summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-10 20:40:23 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-10 20:40:23 +0200
commit08fc48492acc07259d91293df12bf66447819443 (patch)
treec1c7ea33aeb3e2ce63759684df3ea17901b93ac6 /runtime
parent58bb61cf5ee008254eb331bc3574eac87d2dcc4a (diff)
downloadvim-git-08fc48492acc07259d91293df12bf66447819443.tar.gz
patch 8.2.1172: error messages when doing "make clean" in doc or teev8.2.1172
Problem: Error messages when doing "make clean" in the runtime/doc or src/tee directories. Solution: Use "rm -f".
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile
index 4112ae95e..fcbcdc5bd 100644
--- a/runtime/doc/Makefile
+++ b/runtime/doc/Makefile
@@ -396,7 +396,7 @@ test_urls:
vim -S test_urls.vim
clean:
- -rm doctags *.html tags.ref
+ -rm -f doctags *.html tags.ref
# These files are in the extra archive, skip if not present