blob: f09da154b88dcdc6b54f783b7217f7e73838f105 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
set -e
if [ "$(id -u)" != '0' ]; then
# Fail, we declared needing root as a restriction.
exit 1
fi
srcdir="$(pwd)"
cd $AUTOPKGTEST_TMP
"$srcdir/configure" \
--disable-nls \
--disable-dselect \
--prefix=/usr \
--libexecdir='${exec_prefix}/lib' \
--sysconfdir=/etc \
--localstatedir=/var \
# EOL
make installcheck TESTSUITEFLAGS=--verbose
|