Patch 8.2.1675

4 views
Skip to first unread message

Bram Moolenaar

unread,
Sep 13, 2020, 3:04:28 PM9/13/20
to vim...@googlegroups.com

Patch 8.2.1675
Problem: MinGW: testdir makefile deletes non-existing file.
Solution: Use another way to delete the output file if it already exists.
(Michael Soyka)
Files: src/testdir/Make_ming.mak


*** ../vim-8.2.1674/src/testdir/Make_ming.mak 2020-08-26 22:29:53.565864941 +0200
--- src/testdir/Make_ming.mak 2020-09-13 20:57:31.531219031 +0200
***************
*** 95,101 ****
# Copy the input files to dostmp, changing the fileformat to dos.
$(DOSTMP)/%.in : %.in
if not exist $(DOSTMP)\nul mkdir $(DOSTMP)
! if not exist $@ $(DEL) $@
$(VIMPROG) -u dos.vim $(NO_INITS) "+set ff=dos|f $@|wq" $<

# For each input file dostmp/test99.in run the tests.
--- 95,101 ----
# Copy the input files to dostmp, changing the fileformat to dos.
$(DOSTMP)/%.in : %.in
if not exist $(DOSTMP)\nul mkdir $(DOSTMP)
! if exist $(DOSTMP)\$< $(DEL) $(DOSTMP)\$<
$(VIMPROG) -u dos.vim $(NO_INITS) "+set ff=dos|f $@|wq" $<

# For each input file dostmp/test99.in run the tests.
*** ../vim-8.2.1674/src/version.c 2020-09-13 18:57:43.514555271 +0200
--- src/version.c 2020-09-13 19:35:21.844421237 +0200
***************
*** 752,753 ****
--- 752,755 ----
{ /* Add new patch number below this line */
+ /**/
+ 1675,
/**/

--
A programmer's wife asks him: "Please run to the store and pick up a loaf of
bread. If they have eggs, get a dozen". The programmer comes home with 12
loafs of bread.

/// Bram Moolenaar -- Br...@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 ///
Reply all
Reply to author
Forward
0 new messages