diff options
Diffstat (limited to 'chapter7/util-linux.sh')
-rw-r--r-- | chapter7/util-linux.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/chapter7/util-linux.sh b/chapter7/util-linux.sh new file mode 100644 index 0000000..7a00c8c --- /dev/null +++ b/chapter7/util-linux.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +mkdir -p /var/lib/hwclock && +./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 \ + runstatedir=/run && +make && +make -j1 install |