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.
28 lines
767 B
28 lines
767 B
#!/usr/bin/env bash |
|
|
|
./configure --bindir=/usr/bin \ |
|
--libdir=/usr/lib \ |
|
--runstatedir=/run \ |
|
--sbindir=/usr/sbin \ |
|
--disable-chfn-chsh \ |
|
--disable-login \ |
|
--disable-nologin \ |
|
--disable-su \ |
|
--disable-setpriv \ |
|
--disable-runuser \ |
|
--disable-pylibmount \ |
|
--disable-liblastlog2 \ |
|
--disable-static \ |
|
--without-python \ |
|
ADJTIME_PATH=/var/lib/hwclock/adjtime \ |
|
--docdir=/usr/share/doc/util-linux-2.41.3 |
|
|
|
make |
|
|
|
# bash tests/run.sh --srcdir=$PWD --builddir=$PWD |
|
|
|
touch /etc/fstab |
|
chown -R tester . |
|
su tester -c "make -k check" |
|
make install |
|
|
|
|