diff options
author | K.Takata <kentkt@csc.jp> | 2022-09-09 10:52:47 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-09-09 10:52:47 +0100 |
commit | 5bc13453b2dd8067597793e32c4f94aa3031054a (patch) | |
tree | 65ec7297bde790aaa686e0af77cb28d8aa50a393 /.appveyor.yml | |
parent | c572ad508f53bd89aa29081fc583f17ef1f0f123 (diff) | |
download | vim-git-5bc13453b2dd8067597793e32c4f94aa3031054a.tar.gz |
patch 9.0.0421: MS-Windows makefiles are inconsistently namedv9.0.0421
Problem: MS-Windows makefiles are inconsistently named.
Solution: Use consistent names. (Ken Takata, closes #11088)
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 80f8e38f0..866725f0b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,9 +26,9 @@ test_script: - cd src/testdir # Testing with MSVC gvim - path C:\Python35-x64;%PATH% - - nmake -f Make_dos.mak VIMPROG=..\gvim - - nmake -f Make_dos.mak clean + - nmake -f Make_mvc.mak VIMPROG=..\gvim + - nmake -f Make_mvc.mak clean # Testing with MSVC console version - - nmake -f Make_dos.mak VIMPROG=..\vim + - nmake -f Make_mvc.mak VIMPROG=..\vim # vim: sw=2 sts=2 et ts=8 sr |