comparison src/Make_mvc.mak @ 19374:f123c6732cf3 v8.2.0245

patch 8.2.0245: MSVC: error message if the auto directory already exists Commit: https://github.com/vim/vim/commit/5489eab34528ba31054bc7c99af120b07f543b78 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 11 22:49:18 2020 +0100 patch 8.2.0245: MSVC: error message if the auto directory already exists Problem: MSVC: error message if the auto directory already exists. Solution: Add "if not exists". (Ken Takata, closes https://github.com/vim/vim/issues/5620)
author Bram Moolenaar <Bram@vim.org>
date Tue, 11 Feb 2020 23:00:04 +0100
parents 94eda51ba9ba
children 1cae476a7c82
comparison
equal deleted inserted replaced
19373:47e90f6458de 19374:f123c6732cf3
1582 1582
1583 $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL) 1583 $(OUTDIR)/if_lua.obj: $(OUTDIR) if_lua.c $(INCL)
1584 $(CC) $(CFLAGS_OUTDIR) $(LUA_INC) if_lua.c 1584 $(CC) $(CFLAGS_OUTDIR) $(LUA_INC) if_lua.c
1585 1585
1586 auto/if_perl.c : if_perl.xs typemap 1586 auto/if_perl.c : if_perl.xs typemap
1587 -mkdir auto 1587 -if not exist auto/nul mkdir auto
1588 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \ 1588 $(XSUBPP) -prototypes -typemap $(XSUBPP_TYPEMAP) \
1589 -typemap typemap if_perl.xs -output $@ 1589 -typemap typemap if_perl.xs -output $@
1590 1590
1591 $(OUTDIR)/if_perl.obj: $(OUTDIR) auto/if_perl.c $(INCL) 1591 $(OUTDIR)/if_perl.obj: $(OUTDIR) auto/if_perl.c $(INCL)
1592 $(CC) $(CFLAGS_OUTDIR) $(PERL_INC) auto/if_perl.c 1592 $(CC) $(CFLAGS_OUTDIR) $(PERL_INC) auto/if_perl.c