From: John Kacur <jkacur@xxxxxxxxxx> 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@xxxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 * -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html