From: Jani Taskinen Date: Wed, 24 Jun 2009 07:42:33 +0000 (+0000) Subject: MFH:- Fixed bug #48661 (phpize broken with non-bash shells) X-Git-Tag: php-5.3.0~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8e42c91b07ac301632aa2be81d3327669cdc275;p=php MFH:- Fixed bug #48661 (phpize broken with non-bash shells) --- 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 <