git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12045 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-02-16 13:57:25 +00:00
parent 118f136484
commit d36af284d8
1 changed files with 2 additions and 5 deletions

View File

@ -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