2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-15 20:32:26 +00:00
repo/core/util-linux/build

24 lines
496 B
Plaintext
Raw Normal View History

2019-07-06 17:05:49 +00:00
#!/bin/sh -e
2019-07-20 17:13:20 +00:00
# During ./configure, disable kill and sulogin as they are provided
# by busybox.
2019-07-06 17:05:49 +00:00
./configure \
--prefix=/usr \
--localstatedir=/var \
--bindir=/usr/bin \
--sbindir=/usr/bin \
--libdir=/usr/lib \
--enable-libuuid \
--enable-libblkid \
--enable-fsck \
--disable-makeinstall-chown \
--disable-rpath \
2019-07-20 17:13:20 +00:00
--disable-kill \
--disable-sulogin \
2019-07-06 17:05:49 +00:00
--without-udev \
--without-python \
--without-systemd
make
make DESTDIR="$1" install