diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-12-19 21:05:57 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-12-19 21:05:57 +0100 |
commit | 6dc6703295362e0d4b81a3eceae6b0dd229b5d7e (patch) | |
tree | b119015ac3b11caa388ac338374741147d0beef8 /src/Make_mvc.mak | |
parent | 9d5c84a08f0574e680ef61d7e44e981bd6be741d (diff) | |
download | vim-git-6dc6703295362e0d4b81a3eceae6b0dd229b5d7e.tar.gz |
patch 8.1.0610: MS-Windows ctags file list differs from Unixv8.1.0610
Problem: MS-Windows ctags file list differs from Unix.
Solution: Define TAGS_FILES in the common makefile. (partly by Ken Takata)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r-- | src/Make_mvc.mak | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index a35708d8d..5e22470af 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1270,8 +1270,7 @@ GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h tags: notags - $(CTAGS) *.c *.cpp *.h - if exist auto\if_perl.c $(CTAGS) --append=yes auto\if_perl.c + $(CTAGS) $(TAGS_FILES) notags: - if exist tags del tags |