summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJérôme Loyet <fat@php.net>2011-07-13 23:28:48 +0000
committerJérôme Loyet <fat@php.net>2011-07-13 23:28:48 +0000
commit3af61f1bf2ad087ddd133a08bb22ea21a14c117a (patch)
tree43767b30216e35f7fb36a99fc9ea7caf978d69eb /build
parente3253b79ad8d895adbc2cd3aec239bb433b98005 (diff)
downloadphp-git-3af61f1bf2ad087ddd133a08bb22ea21a14c117a.tar.gz
find option '-not' is not POSIX compliant
Diffstat (limited to 'build')
-rw-r--r--build/build.mk2
1 files changed, 1 insertions, 1 deletions
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