You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
607 B
22 lines
607 B
#!/usr/bin/env bash |
|
|
|
mkdir -pv /var/lib/hwclock |
|
|
|
./configure --libdir=/usr/lib \ |
|
--runstatedir=/run \ |
|
--disable-chfn-chsh \ |
|
--disable-login \ |
|
--disable-nologin \ |
|
--disable-su \ |
|
--disable-setpriv \ |
|
--disable-runuser \ |
|
--disable-pylibmount \ |
|
--disable-static \ |
|
--disable-liblastlog2 \ |
|
--without-python \ |
|
ADJTIME_PATH=/var/lib/hwclock/adjtime \ |
|
--docdir=/usr/share/doc/util-linux-2.41.3 |
|
|
|
make |
|
make install |
|
|
|
|