FSBUILD-282

This commit is contained in:
Brian West 2010-06-13 19:16:28 -05:00
parent 67217f0c9b
commit 6c74fe9836
1 changed files with 10 additions and 3 deletions

View File

@ -2,9 +2,16 @@
echo "bootstrap: checking installation..."
BGJOB=false
if [ "${1}" == "-j" ] ; then
BGJOB=true
fi
while getopts jh arg
do
case $arg in
j) BGJOB=true;;
h) echo "Usage: $0 <options>"
echo " Options:"
echo " -j => Run Jobs in Background"
exit;;
esac
done
BASEDIR=`pwd`;
LIBDIR=${BASEDIR}/libs;