diff options
author | Jani Taskinen <jani@php.net> | 2009-07-21 12:01:26 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-07-21 12:01:26 +0000 |
commit | 078e6c27988c5c31948d9c4d30f6ae43a3bef4ed (patch) | |
tree | 817f636c546a6b26603574af2504f496de1d2665 | |
parent | 4432cf5370e8be243b32aaa06d9395144af4d104 (diff) | |
download | php-git-078e6c27988c5c31948d9c4d30f6ae43a3bef4ed.tar.gz |
- Fixed problem with vcsclean which caused it not to really clean whole tree
-rw-r--r-- | build/build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.mk b/build/build.mk index 2845785f39..8640ac139f 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: |