Skip to content

Commit 8ed75cb

Browse files
committed
patch 8.1.1505: running "make clean" twice gives errors
Problem: Running "make clean" twice gives errors. Solution: Add "-f" to "rm". (closes #4516)
1 parent ef23c52 commit 8ed75cb

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/testdir/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG)
8585

8686
clean:
8787
-rm -rf *.out *.failed *.res *.rej *.orig
88-
-rm opt_test.vim test.log test_result.log messages
89-
-rm $(RM_ON_RUN) $(RM_ON_START)
90-
-rm valgrind.*
88+
-rm -f opt_test.vim test.log test_result.log messages
89+
-rm -f $(RM_ON_RUN) $(RM_ON_START)
90+
-rm -f valgrind.*
9191

9292
test1.out: test1.in
9393
-rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,8 @@ static char *(features[]) =
777777

778778
static int included_patches[] =
779779
{ /* Add new patch number below this line */
780+
/**/
781+
1505,
780782
/**/
781783
1504,
782784
/**/

0 commit comments

Comments
 (0)