File: test-commands

package info (click to toggle)
inetutils 2%3A2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,588 kB
  • sloc: ansic: 132,363; sh: 12,498; yacc: 1,651; makefile: 725; perl: 72
file content (32 lines) | stat: -rwxr-xr-x 677 bytes parent folder | download | duplicates (3)
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
30
31
32
#!/bin/sh

set -e

autoreconf -f -i
./configure \
  --disable-libls \
  --disable-talk \
  --disable-ftp \
  --disable-ftpd \
  --disable-ping \
  --disable-ping6 \
  --disable-tftp \
  --disable-tftpd \
  --disable-traceroute \
  # EOL

PATH="/usr/sbin:/sbin:$PATH"

export VERBOSE=1

export DNSDOMAINNAME=$(command -v inetutils-dnsdomainname)
export IFCONFIG=$(command -v inetutils-ifconfig)
export INETD=$(command -v inetutils-inetd)
export LOGGER=$(command -v inetutils-logger)
export SYSLOGD=$(command -v syslogd)
export TELNET=$(command -v inetutils-telnet)
export hostname=$(command -v inetutils-hostname)

make -C lib 2>&1
make -C libinetutils 2>&1
make -C tests check