diff options
Diffstat (limited to 'chapter7/util-linux.sh')
-rw-r--r-- | chapter7/util-linux.sh | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/chapter7/util-linux.sh b/chapter7/util-linux.sh index e0241fa..1628572 100644 --- a/chapter7/util-linux.sh +++ b/chapter7/util-linux.sh @@ -1,18 +1,18 @@ -#!/bin/bash -set -e - -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 +#!/bin/bash
+set -e
+
+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
|