From: Brian West Date: Wed, 1 Sep 2010 22:59:22 +0000 (-0500) Subject: FSBUILD-301 X-Git-Tag: v1.2-rc1~419 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8dbd62ff178e6dc63ebd532526a843fd19dce4a5;p=thirdparty%2Ffreeswitch.git FSBUILD-301 --- diff --git a/bootstrap.sh b/bootstrap.sh index 59a568769e..0ea5cd43d4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -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}