trawick 01/07/30 07:59:59
Modified: . buildconf.sh Log: don't keep going if autoconf failed Revision Changes Path 1.11 +6 -1 apr-util/buildconf.sh Index: buildconf.sh =================================================================== RCS file: /home/cvs/apr-util/buildconf.sh,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- buildconf.sh 2001/07/30 04:32:41 1.10 +++ buildconf.sh 2001/07/30 14:59:59 1.11 @@ -8,7 +8,12 @@ echo "Creating configure ..." ### do some work to toss config.cache? -autoconf +if autoconf; then + : +else + echo "autoconf failed" + exit 1 +fi # # If Expat has been bundled, then go and configure the thing
