]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
dont fail on bootstrap due to missing libs
authorMichael Jerris <mike@jerris.com>
Tue, 8 Jun 2010 17:21:54 +0000 (13:21 -0400)
committerMichael Jerris <mike@jerris.com>
Tue, 8 Jun 2010 17:22:20 +0000 (13:22 -0400)
bootstrap.sh

index a1c93a87c7c04c36ccaef79943bdeaa7ee2f5b1e..179aae6cdcf9ba1772938ed4c72d83a0d98227e0 100755 (executable)
@@ -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
 }