sniper Mon Jun 16 17:44:54 2003 EDT
Modified files: (Branch: PHP_4_3)
/php4/scripts phpize.in
Log:
MFH: Fixed bug #24207: phpize wrong exit code
Index: php4/scripts/phpize.in
diff -u php4/scripts/phpize.in:1.1.2.1 php4/scripts/phpize.in:1.1.2.2
--- php4/scripts/phpize.in:1.1.2.1 Tue Jan 28 10:02:08 2003
+++ php4/scripts/phpize.in Mon Jun 16 17:44:54 2003
@@ -38,10 +38,10 @@
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//'`
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php