From b892d762e55a775b5424b714c368084ae38ea4e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Loyet?= Date: Wed, 13 Jul 2011 23:28:48 +0000 Subject: [PATCH] find option '-not' is not POSIX compliant --- build/build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.mk b/build/build.mk index 5aebae1a1a..8cefd59aad 100644 --- a/build/build.mk +++ b/build/build.mk @@ -68,7 +68,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 -- 2.50.1