Browse Source

MFB: fix cvsclean on cygwin with windows-style EOLs

migration/RELEASE_1_0_0
Nuno Lopes 20 years ago
parent
commit
3efdead8af
  1. 2
      build/build.mk

2
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
Loading…
Cancel
Save