aboutsummaryrefslogtreecommitdiff
path: root/checkinst.sh
blob: e5490bcd4d356db4b68b129d696c4028b2582b73 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

CMD="ln -svf $PWD/bu /usr/include; ln -svf $PWD/libbu++.a /usr/lib"

if [ $UID == 0 ]; then
	bash -c "$CMD"
else
	echo This script needs root access...
	su root -c "$CMD"
fi