diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-12-10 22:48:15 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-12-10 22:48:15 +0100 |
commit | 1e46705a83ef2bbabd4a53ec40108558b73ed54f (patch) | |
tree | cddea706e9edb9c6dd16766ff74404503109f88c | |
parent | e24c5b3332b453175e5f73423884087a4aef1247 (diff) | |
download | vim-git-1e46705a83ef2bbabd4a53ec40108558b73ed54f.tar.gz |
patch 8.1.2417: MinGW/Cygwin build does not clean up all filesv8.1.2417
Problem: MinGW/Cygwin build does not clean up all files.
Solution: Delete *.map files. (Michael Soyka)
-rw-r--r-- | src/Make_cyg_ming.mak | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak index 8654ca3a5..46c68ab02 100644 --- a/src/Make_cyg_ming.mak +++ b/src/Make_cyg_ming.mak @@ -1071,6 +1071,7 @@ clean: -$(DEL) $(OUTDIR)$(DIRSLASH)pathdef.c -rmdir $(OUTDIR) -$(DEL) $(MAIN_TARGET) vimrun.exe install.exe uninstall.exe + -$(DEL) *.map ifdef PERL -$(DEL) if_perl.c -$(DEL) auto$(DIRSLASH)if_perl.c diff --git a/src/version.c b/src/version.c index 18312866e..0956f8721 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 */ /**/ + 2417, +/**/ 2416, /**/ 2415, |