mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-23 04:49:06 +00:00
31 lines
751 B
Bash
31 lines
751 B
Bash
# Util-linux Phase 4
|
|
./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \
|
|
--bindir=/usr/bin \
|
|
--libdir=/usr/lib \
|
|
--sbindir=/usr/sbin \
|
|
--docdir=/usr/share/doc/util-linux-2.38.1 \
|
|
--disable-chfn-chsh \
|
|
--disable-login \
|
|
--disable-nologin \
|
|
--disable-su \
|
|
--disable-setpriv \
|
|
--disable-runuser \
|
|
--disable-pylibmount \
|
|
--disable-static \
|
|
--without-python \
|
|
--without-systemd \
|
|
--without-systemdsystemunitdir
|
|
|
|
make
|
|
|
|
if $RUN_TESTS
|
|
then
|
|
set +e
|
|
chown -Rv tester .
|
|
su tester -c "make -k check"
|
|
set -e
|
|
fi
|
|
|
|
make install
|
|
|