Skip to content

Commit

Permalink
only conditionally remove the file.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14214 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
jsled committed May 28, 2006
1 parent 4cd8389 commit 576bc55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.TAGS
Expand Up @@ -17,9 +17,9 @@ etags.files: $(shell find . -mindepth 1 -type d ! -name CVS ! -path "*/.*")
# we don't need an etags.files dep here b/c you always call this after
# re-generating etags.files if needed from the top-level Makefile.am.
TAGS: $(shell cat etags.files)
rm TAGS
if [ -f TAGS ]; then rm TAGS; fi
cat etags.files | xargs -n 200 etags --append

tags: $(shell cat etags.files)
rm tags
if [ -f TAGS ]; then rm tags; fi
cat etags.files | xargs -n 200 ctags --append

0 comments on commit 576bc55

Please sign in to comment.