# HG changeset patch # User Bram Moolenaar # Date 1576015204 -3600 # Node ID 4a3c9d39fc31417b57dbc41b2b3d0844dc59d70e # Parent f27b04a94ef1bec1ff334d74bbf146b75b8e646c patch 8.1.2417: MinGW/Cygwin build does not clean up all files Commit: https://github.com/vim/vim/commit/1e46705a83ef2bbabd4a53ec40108558b73ed54f Author: Bram Moolenaar Date: Tue Dec 10 22:48:15 2019 +0100 patch 8.1.2417: MinGW/Cygwin build does not clean up all files Problem: MinGW/Cygwin build does not clean up all files. Solution: Delete *.map files. (Michael Soyka) diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak --- 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 --- 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,