From: Amos Jeffries Date: Sat, 29 Nov 2008 14:51:34 +0000 (+1300) Subject: Revert configure quoting. X-Git-Tag: SQUID_3_2_0_1~1320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=591e6db024639ba7341acebb9f950a6452c7aed7;p=thirdparty%2Fsquid.git Revert configure quoting. Turns out the suposedly extraneous quoting is required. Also append success message to build so testbed can catch it and find any error without having to enumerate all failure cases. --- diff --git a/Makefile.am b/Makefile.am index b3290881a1..ff3a26b936 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,3 +42,6 @@ EXTRA_DIST = \ install-pinger: chown root $(DEFAULT_PINGER) chmod 4711 $(DEFAULT_PINGER) + +all-am: + @echo "Build Successful." diff --git a/configure.in b/configure.in index b9ff773317..bb4831e9c1 100644 --- a/configure.in +++ b/configure.in @@ -815,7 +815,7 @@ then dnl eCAP support requires libecap AC_CHECK_LIB([ecap], [main], [ECAP_LIBS="-lecap"], - AC_MSG_FAILURE([eCAP support requires libecap library, but no usable library was found]) + [AC_MSG_FAILURE([eCAP support requires libecap library, but no usable library was found])] ) fi diff --git a/test-builds.sh b/test-builds.sh index 76a6d2961c..a8a9d2f4ed 100755 --- a/test-builds.sh +++ b/test-builds.sh @@ -37,6 +37,8 @@ for f in `ls -1 ./test-suite/buildtests/layer*.opts` ; do echo "TESTING: ${arg}" ../test-suite/buildtest.sh ".${arg}" grep -E "${errors}" buildtest_*.log && exit 1 + result=`tail -2 buildtest_*.log | head -1` + test "${result}" = "Build Successful." || ( tail -5 buildtest_*.log ; exit 1 ) cd .. if test "${cleanup}" = "yes" ; then echo "REMOVE: bt${layer}"