Browse Source

fix cvsclean on cygwin with windows-style EOLs

experimental/5.2-WITH_DRCP
Nuno Lopes 20 years ago
parent
commit
fd7d6a6f0a
  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