tony2001                Wed Apr  5 20:22:21 2006 UTC

  Modified files:              (Branch: PHP_5_1)
    /php-src    Makefile.global 
  Log:
  MFH: 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.57.2.3&r2=1.57.2.4&diff_format=u
Index: php-src/Makefile.global
diff -u php-src/Makefile.global:1.57.2.3 php-src/Makefile.global:1.57.2.4
--- php-src/Makefile.global:1.57.2.3    Tue Nov 22 00:50:36 2005
+++ php-src/Makefile.global     Wed Apr  5 20:22:21 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