From: foobar Date: Mon, 16 Jun 2003 21:44:29 +0000 (+0000) Subject: Fixed bug #24207: phpize wrong exit code X-Git-Tag: RELEASE_1_0_2~173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c43d5587002ef619ceef7189bd0824d0e38ee7b5;p=php Fixed bug #24207: phpize wrong exit code --- diff --git a/scripts/phpize.in b/scripts/phpize.in index ff26cb278f..7a4fdb759a 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -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//'`