diff options
Diffstat (limited to 'chapter8/util-linux.sh')
-rw-r--r-- | chapter8/util-linux.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chapter8/util-linux.sh b/chapter8/util-linux.sh new file mode 100644 index 0000000..f44bb38 --- /dev/null +++ b/chapter8/util-linux.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \ + --docdir=/usr/share/doc/util-linux-"${VERSION}" \ + --disable-chfn-chsh \ + --disable-login \ + --disable-nologin \ + --disable-su \ + --disable-setpriv \ + --disable-runuser \ + --disable-pylibmount \ + --disable-static \ + --without-python \ + --without-systemd \ + --without-systemdsystemunitdir \ + runstatedir=/run + +make + +make -j1 install |