From c9fb0a42fabb9768b8af10ee4ebf97560ce529cc Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Mon, 17 Mar 2008 15:21:58 +0000 Subject: [PATCH] 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 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 -- 2.50.1