tony2001                Wed Apr  5 20:21:59 2006 UTC

  Modified files:              
    /php-src    Makefile.global 
  Log:
  workaround for problem on Solaris: shell tries to parse "for i in ;" and fails
  
  
http://cvs.php.net/viewcvs.cgi/php-src/Makefile.global?r1=1.67&r2=1.68&diff_format=u
Index: php-src/Makefile.global
diff -u php-src/Makefile.global:1.67 php-src/Makefile.global:1.68
--- php-src/Makefile.global:1.67        Wed Mar  8 14:41:45 2006
+++ php-src/Makefile.global     Wed Apr  5 20:21:59 2006
@@ -44,13 +44,13 @@
 
 install-headers:
        [EMAIL PROTECTED] test "$(INSTALL_HEADERS)"; then \
-               for i in $(INSTALL_HEADERS); do \
+               for i in `echo $(INSTALL_HEADERS)`; do \
                        i=`$(top_srcdir)/build/shtool path -d $$i`; \
                        paths="$$paths $(INSTALL_ROOT)$(phpincludedir)/$$i"; \
                done; \
                $(mkinstalldirs) $$paths && \
                echo "Installing header files:          
$(INSTALL_ROOT)$(phpincludedir)/" && \
-               for i in $(INSTALL_HEADERS); do \
+               for i in `echo $(INSTALL_HEADERS)`; do \
                        if test "$(PHP_PECL_EXTENSION)"; then \
                                src=`echo $$i | $(SED) -e 
"s#ext/$(PHP_PECL_EXTENSION)/##g"`; \
                        else \

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

Reply via email to