sniper          Wed Sep 14 13:57:24 2005 EDT

  Modified files:              
    /php-src    Makefile.global 
  Log:
  Silence warnings under Solaris
  
http://cvs.php.net/diff.php/php-src/Makefile.global?r1=1.59&r2=1.60&ty=u
Index: php-src/Makefile.global
diff -u php-src/Makefile.global:1.59 php-src/Makefile.global:1.60
--- php-src/Makefile.global:1.59        Mon Aug 15 18:30:38 2005
+++ php-src/Makefile.global     Wed Sep 14 13:57:22 2005
@@ -46,12 +46,12 @@
        @$(INSTALL) modules/* $(INSTALL_ROOT)$(EXTENSION_DIR)
 
 test: all 
-       [EMAIL PROTECTED] test ! -z $(PHP_EXECUTABLE) && test -x 
$(PHP_EXECUTABLE); then \
+       [EMAIL PROTECTED] test ! -z "$(PHP_EXECUTABLE)" && test -x 
"$(PHP_EXECUTABLE)"; then \
                TEST_PHP_EXECUTABLE=$(PHP_EXECUTABLE) \
                TEST_PHP_SRCDIR=$(top_srcdir) \
                CC="$(CC)" \
                        $(PHP_EXECUTABLE) -d 'open_basedir=' -d 'safe_mode=0' 
-d 'output_buffering=0' -d 'memory_limit=-1' $(top_srcdir)/run-tests.php -d 
'extension_dir=modules/' -d `( . $(PHP_MODULES) ; echo extension=$$dlname)` 
tests/; \
-       elif test ! -z $(SAPI_CLI_PATH) && test -x $(SAPI_CLI_PATH); then \
+       elif test ! -z "$(SAPI_CLI_PATH)" && test -x "$(SAPI_CLI_PATH)"; then \
                TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
                TEST_PHP_SRCDIR=$(top_srcdir) \
                CC="$(CC)" \

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to