diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/build.mk | 2 |
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 |