diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-11 22:49:18 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-11 22:49:18 +0100 |
commit | 5489eab34528ba31054bc7c99af120b07f543b78 (patch) | |
tree | 090ab3a0314a63cd96369213121bd1786fca2603 | |
parent | 5f1d3ae8a8264292a53aad099e78a9b4a7bad375 (diff) | |
download | vim-git-5489eab34528ba31054bc7c99af120b07f543b78.tar.gz |
patch 8.2.0245: MSVC: error message if the auto directory already existsv8.2.0245
Problem: MSVC: error message if the auto directory already exists.
Solution: Add "if not exists". (Ken Takata, closes #5620)
-rw-r--r-- | src/Make_mvc.mak | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 3e8eae168..c51f8045a 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -1584,7 +1584,7 @@ $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL) $(CC) $(CFLAGS_OUTDIR) $(LUA_INC) if_lua.c auto/if_perl.c : if_perl.xs typemap - -mkdir auto + -if not exist auto/nul mkdir auto $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \ -typemap typemap if_perl.xs -output $@ diff --git a/src/version.c b/src/version.c index 2c14352d8..8e3f20a48 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 245, +/**/ 244, /**/ 243, |