diff options
-rwxr-xr-x | core/util-linux/build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/util-linux/build b/core/util-linux/build index 13394c52..59c6c2b8 100755 --- a/core/util-linux/build +++ b/core/util-linux/build @@ -17,3 +17,9 @@ make make DESTDIR="$1" install + +# For some reason util-linux installs +# to the sbindir even when we tell it +# not to. +mv "$1/usr/sbin/"* "$1/usr/bin" +rm -rf "$1/usr/sbin" |