From d047840ce4b770a86bacab0d62e72d0f61a2b8ab Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 3 Nov 2019 21:46:19 +0100 Subject: patch 8.1.2249: "make vimtags" does not print any message Problem: "make vimtags" does not print any message. Solution: Add a message that the tags have been updated. --- runtime/doc/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'runtime/doc') diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index cec670bf3..4ca08818d 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -324,8 +324,9 @@ all: tags vim.man evim.man vimdiff.man vimtutor.man xxd.man $(CONVERTED) # compiled and installed. Supports multiple languages. vimtags: $(DOCS) @if which $(VIMEXE) >/dev/null; then \ - $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \ - else echo "vim executable $(VIMEXE) not found"; fi + $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \ + echo "help tags updated"; \ + else echo "vim executable $(VIMEXE) not found; help tags not updated"; fi # Use "doctags" to generate the tags file. Only works for English! tags: doctags $(DOCS) -- cgit v1.2.1