diff options
author | Sascha Schumann <sas@php.net> | 1999-12-30 15:05:04 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-30 15:05:04 +0000 |
commit | 5a5ef06c57ad01c06fdecab2aaac86c8dcac0371 (patch) | |
tree | dd3d11cf769dc08d3ad9795cb9318d97308091a1 | |
parent | 0c46c256332a575a2d5742ac59e11fd22b622eb0 (diff) | |
download | php-git-5a5ef06c57ad01c06fdecab2aaac86c8dcac0371.tar.gz |
Fix for Solaris incapability
-rw-r--r-- | build/build2.mk | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/build/build2.mk b/build/build2.mk index e080c4c1f3..0a32b2546f 100644 --- a/build/build2.mk +++ b/build/build2.mk @@ -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) |