]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update
authorAnthony Minessale <anthony.minessale@gmail.com>
Tue, 3 Apr 2007 14:04:26 +0000 (14:04 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Tue, 3 Apr 2007 14:04:26 +0000 (14:04 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4845 d0543943-73ff-0310-b7d9-9358b9ac24b2

build/turbo_build.sh

index 6b6a3816b277e53b975b4cb2fa05a99d7b2af483..22e8be611b41d79ff1775ee1375ca1233ecd131a 100755 (executable)
@@ -5,7 +5,7 @@ if [ -z $MAKE ] ; then
 fi
 
 if [ -z $arg ] ; then
-    $MAKE -j20 freeswitch
+    $MAKE -j freeswitch
     MODS=`cat modules.conf | grep -v \#`
     for i in $MODS ; do 
        MOD_NAME=`echo $i | sed -e 's|^.*/||'`
@@ -42,9 +42,9 @@ MOD_DIR=$1 ; shift
 
 echo "Making module in $MOD_NAME"
 if [ -f $MOD_DIR/Makefile ] ; then 
-    cd $MOD_DIR && BASE=$switch_srcdir $MAKE
+    cd $MOD_DIR && BASE=$switch_srcdir $MAKE -j
 else
-    cd $MOD_DIR && BASE=$switch_srcdir $MAKE -f $switch_srcdir/build/modmake.rules
+    cd $MOD_DIR && BASE=$switch_srcdir $MAKE -j -f $switch_srcdir/build/modmake.rules
 fi
 
 echo "Finished making module in $MOD_NAME"