From: Jani Taskinen Date: Tue, 21 Jul 2009 12:01:26 +0000 (+0000) Subject: - Fixed problem with vcsclean which caused it not to really clean whole tree X-Git-Tag: php-5.3.1RC1~326 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36b94bea86f05712e60d1e3a14943073ab031785;p=php - Fixed problem with vcsclean which caused it not to really clean whole tree --- diff --git a/build/build.mk b/build/build.mk index a4e8c6d6e6..c8132d5760 100644 --- a/build/build.mk +++ b/build/build.mk @@ -69,7 +69,7 @@ cvsclean-work: svnclean-work: @for i in `find . -type d -not -path '*/.svn/*' | grep -v '.svn'`; do \ - (cd `dirname $$i` 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \ + (cd $$i 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \ done gitclean-work: