File: test-root-commands

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