From 024a998852f8e5ec721b3583f3666c703c6c9b4f Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 28 Sep 2010 10:07:07 +0200 Subject: [PATCH] exclude .git when making tags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15d10907..fbd2a0e9 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ wsdl-clean: # are the .java files used ? tags: - find . -type f | egrep -v '/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$' | xargs etags + find . -type f | egrep -v '/\.git/|/\.svn/|TAGS|\.py[co]$$|\.doc$$|\.html$$|\.pdf$$' | xargs etags .PHONY: tags -- 2.43.0