From: Jani Taskinen Date: Wed, 24 Jun 2009 07:43:18 +0000 (+0000) Subject: MFH:- Fixed bug #48661 (phpize broken with non-bash shells) X-Git-Tag: php-5.2.11RC1~238 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bb00a20d43b50de0e9106e8a0409a4f623812d7;p=php MFH:- Fixed bug #48661 (phpize broken with non-bash shells) --- diff --git a/NEWS b/NEWS index 549f282879..39d9baf58b 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2009, PHP 5.2.11 +- Fixed bug #48661 (phpize is broken with non-bash shells). (Jani) - Fixed bug #48636 (Error compiling of ext/date on netware). (guenter at php.net, Ilia) - Fixed bug #48629 (get_defined_constants() ignores categorize parameter). diff --git a/scripts/phpize.in b/scripts/phpize.in index 3adb8c8da4..40ccc77b1f 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -121,7 +121,7 @@ phpize_check_autotools() test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader - if ! test -x "$PHP_AUTOCONF" && ! test -x "`$php_shtool path $PHP_AUTOCONF`"; then + if test ! -x "$PHP_AUTOCONF" && test ! -x "`$php_shtool path $PHP_AUTOCONF`"; then cat <