summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorGwynne Raskind <gwynne@php.net>2008-03-17 15:21:58 +0000
committerGwynne Raskind <gwynne@php.net>2008-03-17 15:21:58 +0000
commitc9fb0a42fabb9768b8af10ee4ebf97560ce529cc (patch)
tree63e2ee3eb1f14afdc8ddbc2a2cb31f14b6435fb0 /build
parentbe6f9c2bb5b068be0b6d96c245bd248828f80c05 (diff)
downloadphp-git-c9fb0a42fabb9768b8af10ee4ebf97560ce529cc.tar.gz
Fix bug #44443 (cvsclean fails on Darwin 9)
Diffstat (limited to 'build')
-rw-r--r--build/build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.mk b/build/build.mk
index 58c8242232..79b179c2e3 100644
--- a/build/build.mk
+++ b/build/build.mk
@@ -67,7 +67,7 @@ snapshot:
cvsclean-work:
@for i in `find . -name .cvsignore`; do \
- (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[\r\n]/ /g'` *.o *.a .libs || true); \
+ (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[[:space:]]/ /g'` *.o *.a .libs || true); \
done
.PHONY: $(ALWAYS) snapshot