]> granicus.if.org Git - php/commitdiff
Fix for Solaris incapability
authorSascha Schumann <sas@php.net>
Thu, 30 Dec 1999 15:05:04 +0000 (15:05 +0000)
committerSascha Schumann <sas@php.net>
Thu, 30 Dec 1999 15:05:04 +0000 (15:05 +0000)
build/build2.mk

index e080c4c1f3268029c05de525e1994b96cec077ba..0a32b2546f4afb0127c716750f0ae784ba5e9879 100644 (file)
@@ -43,9 +43,10 @@ all: .deps Zend/Makefile.am TSRM/Makefile.am $(targets)
 
 .deps:
        @echo creating empty dependencies
-       find ext sapi regex -type d \! -name \*CVS -exec touch {}/.deps \;
-       touch pear/.deps
-       touch $@
+       for i in `find ext sapi regex -type d \! -name \*CVS`; do \
+               list="$$list $$i/.deps"; \
+       done; \
+       touch $$list pear/.deps $@
        
 Zend/Makefile.am:
        test -d Zend || (test -d ../Zend && ln -s ../Zend Zend)