12 lines
139 B
Plaintext
12 lines
139 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "`whoami`" != "root" ]; then
|
||
|
echo Need to be root to execute.;
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
cd ..
|
||
|
make clean
|
||
|
make -j 4
|
||
|
make install
|