[patch 03/15] [tags.diff] Exclude emacs temp files from from etags table

c.shoemaker at cox.net c.shoemaker at cox.net
Mon Oct 10 10:34:25 EDT 2005


 * Makefile.TAGS
   - exclude emacs temp files from etags table
   - wrap line

 Makefile.TAGS |    4 +++-
 1 files changed, 3 insertions(+), 1 deletion(-)

Index: gnucash/Makefile.TAGS
===================================================================
--- gnucash.orig/Makefile.TAGS
+++ gnucash/Makefile.TAGS
@@ -10,7 +10,9 @@
 # The $(shell find . -type d) dependency seems to be pointless -- it
 # always fires.  It appears that someone's always touching something.
 etags.files: $(shell find . -type d)
-	find . -path './debian' -prune -o -path './.pc' -prune -o -name '*.[ch]' -print -o -name '*.scm' -print | sort > etags.files.tmp
+	find . -path './debian' -prune -o -path './.pc' -prune -o \
+		-path '*.#*' -prune -o -name '*.[ch]' -print -o \
+		-name '*.scm' -print | sort > etags.files.tmp
 	@if cmp --quiet etags.files etags.files.tmp; \
         then \
           echo "TAGS file list hasn't changed."; \

--


More information about the gnucash-devel mailing list