summaryrefslogtreecommitdiff
path: root/scripts/phpize.in
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-06-16 21:44:29 +0000
committerfoobar <sniper@php.net>2003-06-16 21:44:29 +0000
commitc43d5587002ef619ceef7189bd0824d0e38ee7b5 (patch)
tree52d7b9389617dff2bfc70956c65509eacb380a58 /scripts/phpize.in
parentabd52d4efc4baf6475dd87ff99473f7218a4da3a (diff)
downloadphp-git-c43d5587002ef619ceef7189bd0824d0e38ee7b5.tar.gz
Fixed bug #24207: phpize wrong exit code
Diffstat (limited to 'scripts/phpize.in')
-rw-r--r--scripts/phpize.in8
1 files changed, 4 insertions, 4 deletions
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//'`