From: Thierry Parmentelat Date: Mon, 6 Dec 2010 13:18:44 +0000 (+0100) Subject: ignore .git when making tags X-Git-Tag: bootcd-5.0-7~12 X-Git-Url: http://git.onelab.eu/?p=bootcd.git;a=commitdiff_plain;h=6a074939d52785a7b459645f7831204acb188a33 ignore .git when making tags --- 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