summaryrefslogtreecommitdiff
path: root/STANDARD_installation
blob: e2647da292fda4a08eb7d420b329610140d711d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -x
set -e
if [ ! -f configure ] ; then sh make_configure; fi
./configure --prefix=/usr --sysconfdir=/etc
make
make -n install
set +x
if [ "`id -u`" != 0 ] ; then
	echo "run make install as root:"
	echo "su root -c 'make install'"
	echo "   OR   "
	echo "sudo make install"
	exit 1
fi