From: Jani Taskinen Date: Fri, 17 Jul 2009 12:14:21 +0000 (+0000) Subject: - Fixed bug #48947 (vcsclean does not remove all created files) X-Git-Tag: php-5.4.0alpha1~191^2~3082 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1fc0130e293dff7ec4d1387f501e9d9a55169f92;p=php - Fixed bug #48947 (vcsclean does not remove all created files) --- diff --git a/build/build.mk b/build/build.mk index ed5d53500e..8dece1d381 100644 --- a/build/build.mk +++ b/build/build.mk @@ -67,12 +67,12 @@ snapshot: cvsclean-work: @for i in `find . -name .cvsignore`; do \ - (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[[:space:]]/ /g'` *.o *.a .libs || true); \ + (cd `dirname $$i` 2>/dev/null && rm -rf `cat .cvsignore | grep -v config.nice | sed 's/[[:space:]]/ /g'` *.o *.a *.lo *.la *.gcno *.gcda .libs || true); \ done 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 .libs || true); \ + (cd `dirname $$i` 2>/dev/null && rm -rf `svn propget svn:ignore . | grep -v config.nice` *.o *.a *.lo *.la .libs || true); \ done gitclean-work: