diff options
Diffstat (limited to 'checkinst.sh')
-rwxr-xr-x | checkinst.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/checkinst.sh b/checkinst.sh new file mode 100755 index 0000000..957267c --- /dev/null +++ b/checkinst.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | CMD="ln -svf $PWD/libbu++.so /usr/lib; ln -svf $PWD/bu /usr/include" | ||
4 | |||
5 | if [ $UID == 0 ]; then | ||
6 | bash -c "$CMD" | ||
7 | else | ||
8 | echo This script needs root access... | ||
9 | su root -c "$CMD" | ||
10 | fi | ||