wez Thu Sep 1 09:59:05 2005 EDT
Modified files: (Branch: PHP_5_1)
/php-src/scripts phpize.in
Log:
portability fix (for solaris)
http://cvs.php.net/diff.php/php-src/scripts/phpize.in?r1=1.28&r2=1.28.2.1&ty=u
Index: php-src/scripts/phpize.in
diff -u php-src/scripts/phpize.in:1.28 php-src/scripts/phpize.in:1.28.2.1
--- php-src/scripts/phpize.in:1.28 Mon Aug 8 12:58:12 2005
+++ php-src/scripts/phpize.in Thu Sep 1 09:59:03 2005
@@ -102,7 +102,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.
@@ -110,7 +110,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