From: Daniel Stenberg Date: Mon, 1 Mar 2004 13:14:26 +0000 (+0000) Subject: Ignore the dreaded aclocal warnings on underquoted definitions that the X-Git-Tag: curl-7_11_1~168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd6ec05916148d4fb38894000b80ba6732de06a8;p=thirdparty%2Fcurl.git Ignore the dreaded aclocal warnings on underquoted definitions that the recent autoconf annoyingly introduced. --- diff --git a/testcurl.sh b/testcurl.sh index cdff67c534..a506e8f305 100755 --- a/testcurl.sh +++ b/testcurl.sh @@ -214,7 +214,8 @@ if [ $CVS -eq 1 ]; then rm -rf autom4te.cache # generate the build files - ./buildconf 2>&1 | tee $buildlog + log "invoke buildconf, but filter off the silly aclocal warnings" + ./buildconf 2>&1 | grep -v "warning: underquoted definition of" | tee $buildlog if { grep "^buildconf: OK" $buildlog >/dev/null 2>&1; } then log "buildconf was successful"