changeset 14978:d148cd1163a5 v8.1.0500

patch 8.1.0500: cleaning up in src/tee may not always work commit https://github.com/vim/vim/commit/833e5dab143034b7e43bc0be49b2eb3687ff9ab7 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 28 15:43:58 2018 +0100 patch 8.1.0500: cleaning up in src/tee may not always work Problem: Cleaning up in src/tee may not always work. Solution: Use "rm" when appropriate. (Michael Soyka, closes https://github.com/vim/vim/issues/3571)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Oct 2018 15:45:05 +0100
parents 4874d0c1915c
children a5f5944300fc
files src/tee/Makefile src/version.c
diffstat 2 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/tee/Makefile
+++ b/src/tee/Makefile
@@ -3,6 +3,12 @@
 CC=gcc
 CFLAGS=-O2 -fno-strength-reduce
 
+ifneq (sh.exe, $(SHELL))
+DEL = rm
+else
+DEL = del
+endif
+
 tee.exe: tee.o
 	$(CC) $(CFLAGS) -s -o $@ $<
 
@@ -10,6 +16,6 @@ tee.o: tee.c
 	$(CC) $(CFLAGS) -c $<
 
 clean:
-	- del tee.o
-	- del tee.exe
+	- $(DEL) tee.o
+	- $(DEL) tee.exe
 
--- a/src/version.c
+++ b/src/version.c
@@ -793,6 +793,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    500,
+/**/
     499,
 /**/
     498,