From: Jérôme Loyet Date: Wed, 13 Jul 2011 23:28:48 +0000 (+0000) Subject: find option '-not' is not POSIX compliant X-Git-Tag: php-5.4.0alpha2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a93fd42b6f42b19185c000c89b1b0afc38bd8e33;p=php find option '-not' is not POSIX compliant --- diff --git a/build/build.mk b/build/build.mk index 61d6033fc1..ac5dadb313 100644 --- a/build/build.mk +++ b/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