1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 07:38:49 -05:00

verify that buildconf ran fine to allow it to continue

This commit is contained in:
Daniel Stenberg 2004-01-29 07:29:28 +00:00
parent cf7817eb38
commit 99b96d5446

View File

@ -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