diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2016-06-17 12:07:48 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2016-06-17 12:07:48 +0200 |
| commit | 272ce38476e24ea92a490ce39565366aba48235b (patch) | |
| tree | 188f77497b1bd649f40f8288cf78c043973e385c | |
| parent | be203ac258365a2fb85a40314708d26112c40381 (diff) | |
| download | rust-272ce38476e24ea92a490ce39565366aba48235b.tar.gz rust-272ce38476e24ea92a490ce39565366aba48235b.zip | |
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 |
