summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2013-02-15 15:02:21 +0100
committerJohn Kacur <jkacur@redhat.com>2013-02-15 15:02:21 +0100
commitb2689a768a3fbdb8fb717719b384855440efec59 (patch)
tree2edaf258e28dadc9029482362b316b7fa695eb85
parent7ffb5a6e20aafaf1e5c1389bf69da15b47923c37 (diff)
downloadrt-tests-b2689a768a3fbdb8fb717719b384855440efec59.tar.gz
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 <jkacur@redhat.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 *