blob: 211de1eb67b29c32542f048704d04cf873ea6b84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
if [ "$(id -u)" = '0' ]; then
# Skip, we cannot declare we do not want root.
exit 77
fi
t=test-not-root
mkdir -p $t
cd $t
../configure --disable-nls --disable-dselect
make installcheck
|