diff options
author | foobar <sniper@php.net> | 2003-06-16 21:44:54 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-06-16 21:44:54 +0000 |
commit | 138a1157ee0b0cd62a166361b080237c6afc0b5c (patch) | |
tree | 6910e2c1c22b435bac4a2f81b0dda7bc9e79403b | |
parent | a63c981d70df24c5f2e6f4e62612e753b92678f2 (diff) | |
download | php-git-138a1157ee0b0cd62a166361b080237c6afc0b5c.tar.gz |
MFH: Fixed bug #24207: phpize wrong exit code
-rw-r--r-- | scripts/phpize.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in index 66ba42068a..a81cd5564b 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//'` |