summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kacur <jkacur@redhat.com>2013-02-08 15:02:14 +0100
committerJohn Kacur <jkacur@redhat.com>2013-02-15 14:45:44 +0100
commit0918c34effecae2c21b3eb28fb6d3712dc751863 (patch)
treeb4b56b6d9011e85ab6a4640a7f98b3a4d471ae6e
parent65c27472cc17e867be106eaa0b722082288fe3a6 (diff)
downloadrt-tests-0918c34effecae2c21b3eb28fb6d3712dc751863.tar.gz
Makefile: Don't tag tmp files created when making a release
Don't tag the copies of the source files placed in the tmp directory during the creation of a release. Without this change tags finds both copies, eg: for tag cyclictest.c # pri kind tag file 1 F C F cyclictest.c src/cyclictest/cyclictest.c 1 2 F F cyclictest.c tmp/rt-tests/src/cyclictest/cyclictest.c 1 With this change only the first one is found. Signed-off-by: John Kacur <jkacur@redhat.com> Reviewed-by: Frank Rowand <frank.rowand@am.sony.com> Tested-by: Frank Rowand <frank.rowand@am.sony.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fd3cdb3..3b637c5 100644
--- a/Makefile
+++ b/Makefile
@@ -192,4 +192,4 @@ help:
.PHONY: tags
tags:
- ctags -R --extra=+f --c-kinds=+p *
+ ctags -R --extra=+f --c-kinds=+p --exclude=tmp *