]> granicus.if.org Git - php/commitdiff
Fixed bug #24207: phpize wrong exit code
authorfoobar <sniper@php.net>
Mon, 16 Jun 2003 21:44:29 +0000 (21:44 +0000)
committerfoobar <sniper@php.net>
Mon, 16 Jun 2003 21:44:29 +0000 (21:44 +0000)
scripts/phpize.in

index ff26cb278fffbd5d993993c85d3cdc6dbb8d859e..7a4fdb759a03a58efbd94e1fc62084fd5b8af5ba 100644 (file)
@@ -38,10 +38,10 @@ sed \
 
 touch install-sh mkinstalldirs missing
 
-aclocal
-autoconf
-autoheader
-libtoolize -f -c
+aclocal || exit 1
+autoconf || exit 1
+autoheader || exit 1
+libtoolize -f -c || exit 1
 
 # dumping API NOs:
 PHP_API_VERSION=`grep -E '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'`