From: Michael Jerris Date: Tue, 8 Jun 2010 17:21:54 +0000 (-0400) Subject: dont fail on bootstrap due to missing libs X-Git-Tag: v1.2-rc1~703 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff960d7862459a3afcc0ea493388b25f5c65d43a;p=thirdparty%2Ffreeswitch.git dont fail on bootstrap due to missing libs --- diff --git a/bootstrap.sh b/bootstrap.sh index a1c93a87c7..179aae6cdc 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -273,6 +273,7 @@ ${AUTOHEADER:-autoheader} libbootstrap() { i=$1 + if [ -d ${LIBDIR}/${i} ] ; then echo "Entering directory ${LIBDIR}/${i}" cd ${LIBDIR}/${i} rm -f aclocal.m4 @@ -322,6 +323,9 @@ libbootstrap() fi rm -rf autom4te*.cache fi + else + echo "Skipping directory ${LIBDIR}/${i}" + fi }