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 -- [email protected] -- 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 ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.