[Gnucash-changes] Patch from Chris Shoemaker to exclude emacs temporary files from etags

David Hampton hampton at cvs.gnucash.org
Thu Oct 13 00:22:46 EDT 2005


Log Message:
-----------
Patch from Chris Shoemaker to exclude emacs temporary files
from etags table.

Tags:
----
gnucash-gnome2-dev

Modified Files:
--------------
    gnucash:
        Makefile.TAGS

Revision Data
-------------
Index: Makefile.TAGS
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/Makefile.TAGS,v
retrieving revision 1.2.4.3
retrieving revision 1.2.4.4
diff -LMakefile.TAGS -LMakefile.TAGS -u -r1.2.4.3 -r1.2.4.4
--- Makefile.TAGS
+++ 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-changes mailing list