From ccf70448ae258667a439915bfe0af5db9e7147e5 Mon Sep 17 00:00:00 2001 From: Joshua Sled Date: Sun, 14 May 2006 23:29:03 +0000 Subject: [PATCH] remove the files before rebuilding them (since we're rebuilding in append mode). git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14068 57a11ea4-9604-0410-9ed3-97b8803252fd --- Makefile.TAGS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.TAGS b/Makefile.TAGS index 3476a83fe5..736238848a 100644 --- a/Makefile.TAGS +++ b/Makefile.TAGS @@ -17,7 +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 cat etags.files | xargs -n 200 etags --append tags: $(shell cat etags.files) + rm tags cat etags.files | xargs -n 200 ctags --append