From bcc6360dac2b2ae50e58d82e92b52c162f52c5fa Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Mon, 17 Mar 2008 15:22:22 +0000 Subject: [PATCH] MFH: Fix bug #44443 (cvsclean fails on Darwin 9) --- build/build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.mk b/build/build.mk index 3e4bad0582..f79cd3b49c 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 -- 2.40.0