diff options
author | Jani Taskinen <jani@php.net> | 2009-06-24 07:42:33 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-06-24 07:42:33 +0000 |
commit | a8e42c91b07ac301632aa2be81d3327669cdc275 (patch) | |
tree | e284acbab4ece1c3f86c7e731e620fdfc0281024 /scripts | |
parent | 0fbf8cebd70a08512ed1cb57d0d4bdda80e162c1 (diff) | |
download | php-git-a8e42c91b07ac301632aa2be81d3327669cdc275.tar.gz |
MFH:- Fixed bug #48661 (phpize broken with non-bash shells)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/phpize.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 <<EOF Cannot find autoconf. Please check your autoconf installation and the \$PHP_AUTOCONF environment variable. Then, rerun this script. @@ -129,7 +129,7 @@ Cannot find autoconf. Please check your autoconf installation and the EOF exit 1 fi - if ! test -x "$PHP_AUTOHEADER" && ! test -x "`$php_shtool path $PHP_AUTOHEADER`"; then + if test ! -x "$PHP_AUTOHEADER" && test ! -x "`$php_shtool path $PHP_AUTOHEADER`"; then cat <<EOF Cannot find autoheader. Please check your autoconf installation and the \$PHP_AUTOHEADER environment variable. Then, rerun this script. |