summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2009-07-21 12:01:26 +0000
committerJani Taskinen <jani@php.net>2009-07-21 12:01:26 +0000
commit36b94bea86f05712e60d1e3a14943073ab031785 (patch)
treeff9b5eb55539c1271fd09752ac83bb275ab0d191 /build
parent569869855ec92d64270e50a28c1a94bf016a8211 (diff)
downloadphp-git-36b94bea86f05712e60d1e3a14943073ab031785.tar.gz
- Fixed problem with vcsclean which caused it not to really clean whole tree
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 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: