mirror of
https://github.com/vim/vim.git
synced 2025-10-09 06:14:17 -04:00
patch 8.2.1172: error messages when doing "make clean" in doc or tee
Problem: Error messages when doing "make clean" in the runtime/doc or src/tee directories. Solution: Use "rm -f".
This commit is contained in:
@@ -396,7 +396,7 @@ test_urls:
|
|||||||
vim -S test_urls.vim
|
vim -S test_urls.vim
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm doctags *.html tags.ref
|
-rm -f doctags *.html tags.ref
|
||||||
|
|
||||||
# These files are in the extra archive, skip if not present
|
# These files are in the extra archive, skip if not present
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@ CC=gcc
|
|||||||
CFLAGS=-O2 -fno-strength-reduce
|
CFLAGS=-O2 -fno-strength-reduce
|
||||||
|
|
||||||
ifneq (sh.exe, $(SHELL))
|
ifneq (sh.exe, $(SHELL))
|
||||||
DEL = rm
|
DEL = rm -f
|
||||||
else
|
else
|
||||||
DEL = del
|
DEL = del
|
||||||
endif
|
endif
|
||||||
|
@@ -754,6 +754,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1172,
|
||||||
/**/
|
/**/
|
||||||
1171,
|
1171,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user