wez Sun Sep 4 00:41:02 2005 EDT
Modified files: (Branch: PHP_4_4)
/php-src/scripts phpize.in
Log:
merge solaris portability fix
http://cvs.php.net/diff.php/php-src/scripts/phpize.in?r1=1.1.2.15.2.3&r2=1.1.2.15.2.4&ty=u
Index: php-src/scripts/phpize.in
diff -u php-src/scripts/phpize.in:1.1.2.15.2.3
php-src/scripts/phpize.in:1.1.2.15.2.4
--- php-src/scripts/phpize.in:1.1.2.15.2.3 Wed Jun 15 13:13:52 2005
+++ php-src/scripts/phpize.in Sun Sep 4 00:41:00 2005
@@ -97,7 +97,7 @@
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 @@
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.
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php