From d36af284d8b11935b55691d15479545fc1334e0c Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 16 Feb 2009 13:57:25 +0000 Subject: [PATCH] tweak git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12045 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- build/turbo_build.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build/turbo_build.sh b/build/turbo_build.sh index 6d631a7ae5..424e811ea3 100755 --- a/build/turbo_build.sh +++ b/build/turbo_build.sh @@ -31,11 +31,8 @@ if [ -z $arg ] ; then done if [ $x = 0 ] ; then echo Build finished. Making install - $MAKE install_core 2>&1 > /dev/null - mods=`find src/mod -name \*.so | grep .libs` - /bin/cp -fp $mods $prefix/mod - mods=`find $prefix/mod -name \*.so` - echo installed core and $mods + $MAKE -j install 2>&1 > /dev/null + echo done exit; fi sleep 1