summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2007-02-15 20:42:24 +0000
committerNuno Lopes <nlopess@php.net>2007-02-15 20:42:24 +0000
commitfd7d6a6f0a4216b163f18b10f5db3d77aa2acbeb (patch)
treed00b86de89ba326d2e7be66226052d047b692803 /build
parent286dee810089613bdf6dd12a950fcb4dac5b8bd1 (diff)
downloadphp-git-fd7d6a6f0a4216b163f18b10f5db3d77aa2acbeb.tar.gz
fix cvsclean on cygwin with windows-style EOLs
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 3b5777ab0f..3e4bad0582 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` *.o *.a .libs || true); \
+ (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[\r\n]/ /g'` *.o *.a .libs || true); \
done
.PHONY: $(ALWAYS) snapshot