Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
util-linux: fix conflicts with busybox
Browse files Browse the repository at this point in the history
  • Loading branch information
konimex committed Jul 20, 2019
1 parent e807da7 commit 941bfbb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion 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 \
Expand All @@ -12,12 +14,15 @@
--enable-fsck \
--disable-makeinstall-chown \
--disable-rpath \
--disable-kill \
--disable-sulogin \
--without-udev \
--without-python \
--without-systemd

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"
2 changes: 1 addition & 1 deletion core/util-linux/version
@@ -1 +1 @@
2.34 2
2.34 3

0 comments on commit 941bfbb

Please sign in to comment.