Skip to content

Commit 9115a73

Browse files
committed
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 `)'
1 parent 07b2c1b commit 9115a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/ctags.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CTAGS_LOCATIONS=$(patsubst ${CFG_SRC_DIR}src/llvm,, \
2828
$(patsubst ${CFG_SRC_DIR}src/rt/sundown,, \
2929
$(patsubst ${CFG_SRC_DIR}src/rt/vg,, \
3030
$(wildcard ${CFG_SRC_DIR}src/*) $(wildcard ${CFG_SRC_DIR}src/rt/*) \
31-
)))))))))))
31+
)))))))))
3232
CTAGS_OPTS=--options="${CFG_SRC_DIR}src/etc/ctags.rust" --languages=-javascript --recurse ${CTAGS_LOCATIONS}
3333
# We could use `--languages=Rust`, but there is value in producing tags for the
3434
# C++ parts of the code base too (at the time of writing, those are .h and .cpp

0 commit comments

Comments
 (0)