aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-29 07:29:28 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-29 07:29:28 +0000
commit99b96d5446a0bcf51022ff192a9fb985ceec10f2 (patch)
tree3f371b5a9907b113d9fa7a322ed4108953fd6798
parentcf7817eb38f6a68f6eb8b1c6a2a242966b0c4125 (diff)
verify that buildconf ran fine to allow it to continue
-rwxr-xr-xtestcurl.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/testcurl.sh b/testcurl.sh
index ca8118ea3..a72ca4409 100755
--- a/testcurl.sh
+++ b/testcurl.sh
@@ -184,7 +184,15 @@ if [ $CVS -eq 1 ]; then
rm -rf autom4te.cache
# generate the build files
- ./buildconf 2>&1
+ ./buildconf 2>&1 | tee build.log
+
+ if { grep "^buildconf: OK" build.log; } then
+ echo "testcurl: buildconf was successful"
+ else
+ echo "testcurl: buildconf was NOT successful"
+ die
+ fi
+
fi
if [ -f configure ]; then