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