Commit: patch 9.1.0628: MinGW: coverage files are not cleaned up

0 views
Skip to first unread message

Christian Brabandt

unread,
7:30 AM (7 hours ago) 7:30 AM
to vim...@googlegroups.com
patch 9.1.0628: MinGW: coverage files are not cleaned up

Commit: https://github.com/vim/vim/commit/f08865ce8309a7d4c7d55d5d9d60b9062eca5370
Author: Ken Takata <ken...@csc.jp>
Date: Sat Jul 27 13:14:35 2024 +0200

patch 9.1.0628: MinGW: coverage files are not cleaned up

Problem: MinGW: coverage files are not cleaned up
Solution: Adjust clean rule to remove the coverage files
(Ken Takata)

closes: #15361

Signed-off-by: Ken Takata <ken...@csc.jp>
Signed-off-by: Christian Brabandt <c...@256bit.org>

diff --git a/src/Make_cyg_ming.mak b/src/Make_cyg_ming.mak
index 5fb3a41f0..f082c960d 100644
--- a/src/Make_cyg_ming.mak
+++ b/src/Make_cyg_ming.mak
@@ -1188,10 +1188,13 @@ notags:

clean:
-$(DEL) $(OUTDIR)$(DIRSLASH)*.o
+ -$(DEL) $(OUTDIR)$(DIRSLASH)*.gcno
+ -$(DEL) $(OUTDIR)$(DIRSLASH)*.gcda
-$(DEL) $(OUTDIR)$(DIRSLASH)*.res
-$(DEL) $(OUTDIR)$(DIRSLASH)pathdef.c
-rmdir $(OUTDIR)
-$(DEL) $(MAIN_TARGET) vimrun.exe install.exe uninstall.exe
+ -$(DEL) *.gcno *.gcda
-$(DEL) *.map
ifdef PERL
-$(DEL) if_perl.c
diff --git a/src/version.c b/src/version.c
index d6f808562..f2b7a19f3 100644
--- a/src/version.c
+++ b/src/version.c
@@ -704,6 +704,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 628,
/**/
627,
/**/
Reply all
Reply to author
Forward
0 new messages