From: hno <> Date: Mon, 27 Sep 2004 23:33:34 +0000 (+0000) Subject: Fix bootstrap script again, and include lib/cppunit-1.10.0 in the X-Git-Tag: SQUID_3_0_PRE4~1039 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4bb9249ef465d8d3a2375c0c36c3981812b11df;p=thirdparty%2Fsquid.git Fix bootstrap script again, and include lib/cppunit-1.10.0 in the bootstrapping process if needed --- diff --git a/bootstrap.sh b/bootstrap.sh index e8114d347f..9924d74650 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -65,8 +65,9 @@ AUTOCONF="autoconf${acver}" ; export AUTOCONF for dir in \ "" \ lib/libTrie + lib/cppunit-1.10.0 do - if ( + if [ -z "$dir" ] || [ -d $dir ] && [ ! -f $dir/configure ]; then echo "Bootstrapping $dir" cd ./$dir # Bootstrap the autotool subsystems @@ -86,9 +87,3 @@ do done echo "Autotool bootstrapping complete." - -#echo "bootstrapping sub projects." -if [ -d lib/libTrie ] && [ ! -f lib/libTrie/configure ]; then - cd lib/libTrie && ./bootstrap.sh -fi -