]> granicus.if.org Git - php/commitdiff
merge solaris portability fix
authorWez Furlong <wez@php.net>
Sun, 4 Sep 2005 04:41:00 +0000 (04:41 +0000)
committerWez Furlong <wez@php.net>
Sun, 4 Sep 2005 04:41:00 +0000 (04:41 +0000)
scripts/phpize.in

index 64399997ee9f60abfe48d133a545c0fd660d2ff3..ad816eb1161f67bd1c51332f2be76a256f226b35 100644 (file)
@@ -97,7 +97,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. 
@@ -105,7 +105,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.