]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FSBUILD-301
authorBrian West <brian@freeswitch.org>
Wed, 1 Sep 2010 22:59:22 +0000 (17:59 -0500)
committerBrian West <brian@freeswitch.org>
Wed, 1 Sep 2010 22:59:50 +0000 (17:59 -0500)
bootstrap.sh

index 59a568769ec07b4398aad060abecdfcdfb2b3962..0ea5cd43d427937d69ad786bf0b25cf00afb4f25 100755 (executable)
@@ -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}