diff options
author | Jani Taskinen <jani@php.net> | 2009-06-24 07:42:14 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-06-24 07:42:14 +0000 |
commit | df5d6fc09a6285ffcbb6a7645d93b1051332ce3b (patch) | |
tree | 666399f2403252c10f7bed16707767b8b4d7bb51 | |
parent | 60dd662002489509cdd5011160b26ef371e0d6ba (diff) | |
download | php-git-df5d6fc09a6285ffcbb6a7645d93b1051332ce3b.tar.gz |
- Fixed bug #48661 (phpize broken with non-bash shells)
-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. |