Skip to content

Commit

Permalink
find option '-not' is not POSIX compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
Jérôme Loyet committed Jul 13, 2011
1 parent e3253b7 commit 3af61f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 3af61f1

Please sign in to comment.