Add mod_ldap as directory example

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@580 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2006-02-09 22:37:44 +00:00
parent aaa6a4f0b5
commit 1bd8aaa8f1
9 changed files with 313 additions and 15 deletions

View File

@@ -57,18 +57,23 @@ if [ -f $uncompressed/.complete ] ; then
fi
cd $uncompressed
$MAKE clean 2>&1
sh ./configure $@
if [ $? = 0 ] ; then
$MAKE
else
echo ERROR
exit 1
fi
if [ -f ../$uncompressed.build.sh ] ; then
MAKE=$MAKE ../$uncompressed.build.sh $@
else
$MAKE clean 2>&1
sh ./configure $@
if [ ! -z $install ] ; then
$MAKE install
if [ $? = 0 ] ; then
$MAKE
else
echo ERROR
exit 1
fi
if [ ! -z $install ] ; then
$MAKE install
fi
fi
if [ $? = 0 ] ; then