FSBUILD-301

This commit is contained in:
Brian West 2010-09-01 17:59:22 -05:00
parent 8a6d0f6810
commit 8dbd62ff17
1 changed files with 3 additions and 3 deletions

View File

@ -341,7 +341,7 @@ rm -rf autom4te*.cache
echo "Entering directory ${LIBDIR}/apr-util"
cd ${LIBDIR}/apr-util
if [ "${BGJOB}" == "false" ] ; then
if [ "${BGJOB}" = "false" ] ; then
./buildconf
else
./buildconf &
@ -350,14 +350,14 @@ fi
for i in ${SUBDIRS}
do
if [ "${BGJOB}" == "false" ] ; then
if [ "${BGJOB}" = "false" ] ; then
libbootstrap ${i}
else
libbootstrap ${i} &
fi
done
if [ "${BGJOB}" == "true" ] ; then
if [ "${BGJOB}" = "true" ] ; then
wait
fi
cd ${BASEDIR}