[patch 3/4] exclude files shadowed by quilt from the etags table
    c.shoemaker at cox.net 
    c.shoemaker at cox.net
       
    Fri Jul 22 14:16:31 EDT 2005
    
    
  
 Makefile.TAGS |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)
Index: gnucash/Makefile.TAGS
===================================================================
--- gnucash.orig/Makefile.TAGS
+++ gnucash/Makefile.TAGS
@@ -10,7 +10,7 @@
 # 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 -name '*.[ch]' -print -o -name '*.scm' -print | sort > etags.files.tmp
+	find . -path './debian' -prune -o -path './.pc' -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-patches
mailing list