diff --git a/core/util-linux/build b/core/util-linux/build index 916cad9b..bc89a1e0 100755 --- a/core/util-linux/build +++ b/core/util-linux/build @@ -1,5 +1,7 @@ #!/bin/sh -e +# During ./configure, disable kill and sulogin as they are provided +# by busybox. ./configure \ --prefix=/usr \ --localstatedir=/var \ @@ -12,6 +14,8 @@ --enable-fsck \ --disable-makeinstall-chown \ --disable-rpath \ + --disable-kill \ + --disable-sulogin \ --without-udev \ --without-python \ --without-systemd @@ -19,5 +23,6 @@ make make DESTDIR="$1" install -# Remove 'getopt' as it is provided by 'busybox'. +# Remove getopt as it is provided by busybox. (For some reason +# ./configure does not support it) rm -f "$1/usr/bin/getopt" diff --git a/core/util-linux/version b/core/util-linux/version index 47d92187..8ac1a55f 100644 --- a/core/util-linux/version +++ b/core/util-linux/version @@ -1 +1 @@ -2.34 2 +2.34 3