FSBUILD-282
This commit is contained in:
parent
67217f0c9b
commit
6c74fe9836
13
bootstrap.sh
13
bootstrap.sh
|
@ -2,9 +2,16 @@
|
||||||
echo "bootstrap: checking installation..."
|
echo "bootstrap: checking installation..."
|
||||||
|
|
||||||
BGJOB=false
|
BGJOB=false
|
||||||
if [ "${1}" == "-j" ] ; then
|
while getopts jh arg
|
||||||
BGJOB=true
|
do
|
||||||
fi
|
case $arg in
|
||||||
|
j) BGJOB=true;;
|
||||||
|
h) echo "Usage: $0 <options>"
|
||||||
|
echo " Options:"
|
||||||
|
echo " -j => Run Jobs in Background"
|
||||||
|
exit;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
BASEDIR=`pwd`;
|
BASEDIR=`pwd`;
|
||||||
LIBDIR=${BASEDIR}/libs;
|
LIBDIR=${BASEDIR}/libs;
|
||||||
|
|
Loading…
Reference in New Issue