Skip to content

Commit

Permalink
- Fixed bug #48947 (vcsclean does not remove all created files)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jani Taskinen committed Jul 17, 2009
1 parent 8503b66 commit 5e76a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5e76a61

Please sign in to comment.