From b2689a768a3fbdb8fb717719b384855440efec59 Mon Sep 17 00:00:00 2001 From: John Kacur Date: Fri, 15 Feb 2013 15:02:21 +0100 Subject: Makefile: Don't tag files in dir BUILD from rpm builds Don't tag copies of files in BUILD created when building an rpm Without this change tags finds both copies, eg: for tag cyclictest.c # pri kind tag file 1 F F cyclictest.c BUILD/rt-tests/src/cyclictest/cyclictest.c 1 2 F F cyclictest.c src/cyclictest/cyclictest.c With this change, only the later one is found Signed-off-by: John Kacur --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57b2ad6..fd98bd7 100644 --- a/Makefile +++ b/Makefile @@ -201,4 +201,4 @@ help: .PHONY: tags tags: - ctags -R --extra=+f --c-kinds=+p --exclude=tmp * + ctags -R --extra=+f --c-kinds=+p --exclude=tmp --exclude=BUILD * -- cgit 1.2.3-korg