aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/util-linux.sh
blob: 6e3c0ff6652fe1c4926d5f9c67fdc5e8d3d7e268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
set -e

./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