From: Derick Rethans Date: Tue, 22 Oct 2002 11:21:38 +0000 (+0000) Subject: - Explicitly return "0" at the end of the script. For some weird reason it X-Git-Tag: php-4.3.0pre2~201 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f070780bf31550dcb86b7cf8ad6b7482815be10;p=php - Explicitly return "0" at the end of the script. For some weird reason it was returning error code 256 for me. This fixes pear install .tar.gz for me. #- Not sure if this is correct though --- diff --git a/pear/scripts/phpize.in b/pear/scripts/phpize.in index 4493c68460..d9dcb1cd75 100644 --- a/pear/scripts/phpize.in +++ b/pear/scripts/phpize.in @@ -38,3 +38,5 @@ echo "Configuring for:" echo " PHP Api Version: "$PHP_API_VERSION echo " Zend Module Api No: "$ZEND_MODULE_API_NO echo " Zend Extension Api No: "$ZEND_EXTENSION_API_NO + +exit 0