From 6a074939d52785a7b459645f7831204acb188a33 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 6 Dec 2010 14:18:44 +0100 Subject: [PATCH] ignore .git when making tags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85297af..01f8495 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ ETAGS=etags tags: - find . -type f -a '!' '(' -name '*.x86' -o -name '*.x86_64' ')' | grep -v '/\.svn/' | xargs $(ETAGS) + find . -type f -a '!' '(' -name '*.x86' -o -name '*.x86_64' ')' | egrep -v '/\.(svn|git)/' | xargs $(ETAGS) .PHONY: tags -- 2.43.0