diff options
| author | bors <bors@rust-lang.org> | 2016-06-17 07:58:33 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-17 07:58:33 -0700 |
| commit | 222e337ac1bfba8a88fcc922a3b30816a2439462 (patch) | |
| tree | 9abb3fca16ef28a77aea0a2e9a2ec4850f3b5036 | |
| parent | c8eff682fd486a405dfbfcc89e613dcbccac0904 (diff) | |
| parent | 272ce38476e24ea92a490ce39565366aba48235b (diff) | |
Auto merge of #34322 - pnkfelix:fix-rustc-ctags, r=alexcrichton
Fixed the `TAGS.rustc.emacs` and `TAGS.rustc.vi` make targets. (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.)
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 179ae1138d8..9e87ce1d9e6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 |
