comparison runtime/doc/Makefile @ 18510:b832fc67f84d v8.1.2249

patch 8.1.2249: "make vimtags" does not print any message Commit: https://github.com/vim/vim/commit/d047840ce4b770a86bacab0d62e72d0f61a2b8ab Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 3 21:46:19 2019 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Nov 2019 22:00:03 +0100
parents b065181f0408
children 59c56c97049d
comparison
equal deleted inserted replaced
18509:2fa136c5b011 18510:b832fc67f84d
322 322
323 # Use Vim to generate the tags file. Can only be used when Vim has been 323 # Use Vim to generate the tags file. Can only be used when Vim has been
324 # compiled and installed. Supports multiple languages. 324 # compiled and installed. Supports multiple languages.
325 vimtags: $(DOCS) 325 vimtags: $(DOCS)
326 @if which $(VIMEXE) >/dev/null; then \ 326 @if which $(VIMEXE) >/dev/null; then \
327 $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \ 327 $(VIMEXE) --clean -eX -u doctags.vim >/dev/null; \
328 else echo "vim executable $(VIMEXE) not found"; fi 328 echo "help tags updated"; \
329 else echo "vim executable $(VIMEXE) not found; help tags not updated"; fi
329 330
330 # Use "doctags" to generate the tags file. Only works for English! 331 # Use "doctags" to generate the tags file. Only works for English!
331 tags: doctags $(DOCS) 332 tags: doctags $(DOCS)
332 ./doctags $(DOCS) | LANG=C LC_ALL=C sort >tags 333 ./doctags $(DOCS) | LANG=C LC_ALL=C sort >tags
333 uniq -d -2 tags 334 uniq -d -2 tags