summaryrefslogtreecommitdiff
path: root/STANDARD_installation
blob: e957c6c320806422ee5e56ce3788cfc2e2285a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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'"
	exit 1
fi