blob: 2fb231da99ba6c2a5dab4b9c2b87e4831ac5809a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0500
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------
Patch 8.1.0500
Problem: Cleaning up in src/tee may not always work.
Solution: Use "rm" when appropriate. (Michael Soyka, closes #3571)
Files: src/tee/Makefile
*** ../vim-8.1.0499/src/tee/Makefile 2018-10-17 22:45:51.167602173 +0200
--- src/tee/Makefile 2018-10-28 15:39:22.597604713 +0100
***************
*** 3,8 ****
--- 3,14 ----
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,15 ****
$(CC) $(CFLAGS) -c $<
clean:
! - del tee.o
! - del tee.exe
--- 16,21 ----
$(CC) $(CFLAGS) -c $<
clean:
! - $(DEL) tee.o
! - $(DEL) tee.exe
*** ../vim-8.1.0499/src/version.c 2018-10-28 14:36:04.222247691 +0100
--- src/version.c 2018-10-28 15:42:12.040813500 +0100
***************
*** 794,795 ****
--- 794,797 ----
{ /* Add new patch number below this line */
+ /**/
+ 500,
/**/
--
The software said it requires Windows 95 or better, so I installed Linux.
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|