From 9115a7353cddb5600cc36c1d37f1722bd0bd71d3 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 2 Oct 2014 03:33:00 +0200 Subject: [PATCH] Fix `make TAGS.vi` target Remove superfluous parentheses from the CTAGS_LOCATIONS expression. Fixes the following error when executing `make TAGS.vi`: /bin/sh: -c: line 0: syntax error near unexpected token `)' --- mk/ctags.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/ctags.mk b/mk/ctags.mk index 93a04e4c93fea..44a16d556be6f 100644 --- a/mk/ctags.mk +++ b/mk/ctags.mk @@ -28,7 +28,7 @@ CTAGS_LOCATIONS=$(patsubst ${CFG_SRC_DIR}src/llvm,, \ $(patsubst ${CFG_SRC_DIR}src/rt/sundown,, \ $(patsubst ${CFG_SRC_DIR}src/rt/vg,, \ $(wildcard ${CFG_SRC_DIR}src/*) $(wildcard ${CFG_SRC_DIR}src/rt/*) \ - ))))))))))) + ))))))))) CTAGS_OPTS=--options="${CFG_SRC_DIR}src/etc/ctags.rust" --languages=-javascript --recurse ${CTAGS_LOCATIONS} # We could use `--languages=Rust`, but there is value in producing tags for the # C++ parts of the code base too (at the time of writing, those are .h and .cpp