Skip to content

Commit

Permalink
Fixed the TAGS.rustc.emacs and TAGS.rustc.vi make targets.
Browse files Browse the repository at this point in the history
(They were added to `ctags.mk` in PR #33256, but I guess I must have
 only tested running `make TAGS.emacs TAGS.rustc.emacs` and not `make
 TAGS.rustc.emacs` on its own.)
  • Loading branch information
pnkfelix committed Jun 17, 2016
1 parent be203ac commit 272ce38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.in
Expand Up @@ -277,7 +277,9 @@ endif

# CTAGS building
ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
$(findstring TAGS.vi,$(MAKECMDGOALS))),)
$(findstring TAGS.vi,$(MAKECMDGOALS)) \
$(findstring TAGS.rustc.emacs,$(MAKECMDGOALS)) \
$(findstring TAGS.rustc.vi,$(MAKECMDGOALS))),)
CFG_INFO := $(info cfg: including ctags rules)
include $(CFG_SRC_DIR)mk/ctags.mk
endif
Expand Down

0 comments on commit 272ce38

Please sign in to comment.