Browse Source

find option '-not' is not POSIX compliant

pull/7/head
Jérôme Loyet 15 years ago
parent
commit
3af61f1bf2
  1. 2
      build/build.mk

2
build/build.mk

@ -67,7 +67,7 @@ cvsclean-work:
done
svnclean-work:
@for i in `find . -type d -not -path '*/.svn/*' | grep -v '.svn'`; do \
@for i in `find . -type d ! -path '*/.svn/*' | grep -v '.svn'`; do \
(cd $$i 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \
done

Loading…
Cancel
Save