2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00

util-linux: fix conflicts with busybox

This commit is contained in:
Muhammad Herdiansyah 2019-07-21 00:13:20 +07:00
parent e807da7ffd
commit 941bfbbb55
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,7 @@
#!/bin/sh -e #!/bin/sh -e
# During ./configure, disable kill and sulogin as they are provided
# by busybox.
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--localstatedir=/var \ --localstatedir=/var \
@ -12,6 +14,8 @@
--enable-fsck \ --enable-fsck \
--disable-makeinstall-chown \ --disable-makeinstall-chown \
--disable-rpath \ --disable-rpath \
--disable-kill \
--disable-sulogin \
--without-udev \ --without-udev \
--without-python \ --without-python \
--without-systemd --without-systemd
@ -19,5 +23,6 @@
make make
make DESTDIR="$1" install 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" rm -f "$1/usr/bin/getopt"

View File

@ -1 +1 @@
2.34 2 2.34 3