1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/bin/sh
set -e
autoreconf -f -i
./configure \
--disable-libls \
--disable-servers \
--disable-clients \
--enable-ftp \
--enable-ftpd \
--enable-ping \
--enable-ping6 \
--enable-traceroute \
# EOL
PATH="/usr/sbin:/sbin:$PATH"
export VERBOSE=1
export FTP=$(command -v inetutils-ftp)
export FTPD=$(command -v ftpd)
export PING6=$(command -v ping6)
export PING=$(command -v ping)
export TRACEROUTE=$(command -v inetutils-traceroute)
make -C lib 2>&1
make -C libinetutils 2>&1
make -C tests check
|