diff options
author | Derick Rethans <derick@php.net> | 2002-10-22 11:21:38 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-10-22 11:21:38 +0000 |
commit | 5f070780bf31550dcb86b7cf8ad6b7482815be10 (patch) | |
tree | 7d8b9ba4787677e59391eebcc66f87f4dfd367bf /pear | |
parent | 42d33c38b3bed492d878eaac44e6b499fa47efe0 (diff) | |
download | php-git-5f070780bf31550dcb86b7cf8ad6b7482815be10.tar.gz |
- 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 <pecl>.tar.gz
for me.
#- Not sure if this is correct though
Diffstat (limited to 'pear')
-rw-r--r-- | pear/scripts/phpize.in | 2 |
1 files changed, 2 insertions, 0 deletions
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 |