diff options
author | Wez Furlong <wez@php.net> | 2005-09-01 13:59:03 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-09-01 13:59:03 +0000 |
commit | 41901d127c32eadedf7245a56182075b243640e0 (patch) | |
tree | 424d4d549aab25fa5b661e6e048a85c64aa1c4a2 /scripts | |
parent | 4f161fe28997f5d1f818fc6ae95a8131066cf1a2 (diff) | |
download | php-git-41901d127c32eadedf7245a56182075b243640e0.tar.gz |
portability fix (for solaris)
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 eed03fc74e..e038464c31 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -102,7 +102,7 @@ phpize_check_autotools() test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader - if ! test -x "`$php_shtool path $PHP_AUTOCONF`"; then + if test ! -x "`$php_shtool path $PHP_AUTOCONF`"; then cat <<EOF Cannot find autoconf. Please check your autoconf installation and the \$PHP_AUTOCONF environment variable is set correctly and then rerun this script. @@ -110,7 +110,7 @@ environment variable is set correctly and then rerun this script. EOF exit 1 fi - if ! test -x "`$php_shtool path $PHP_AUTOHEADER`"; then + if test ! -x "`$php_shtool path $PHP_AUTOHEADER`"; then cat <<EOF Cannot find autoheader. Please check your autoconf installation and the \$PHP_AUTOHEADER environment variable is set correctly and then rerun this script. |