diff options
author | Jonathan Corbet <corbet@lwn.net> | 2016-11-16 15:38:03 -0700 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-11-16 15:38:03 -0700 |
commit | c54b6b37796edbe7eb48756d4be151479ea430ab (patch) | |
tree | 0b5a964d8c076292d2fc64a7a45cefeb4eb18869 /Documentation/media/Makefile | |
parent | 15a04d4e76bd7ba755591f2369c574d8a0a7dc5d (diff) |
docs: Avoid warning on cleandocs
Recent Makefile changes added an rm command without the requisite "-f",
leading to warnings if the files do not exist. Make it be quiet again.
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/media/Makefile')
-rw-r--r-- | Documentation/media/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/media/Makefile b/Documentation/media/Makefile index 297b85c37ab9..c22a30b07821 100644 --- a/Documentation/media/Makefile +++ b/Documentation/media/Makefile @@ -38,7 +38,7 @@ xml: all latex: $(IMGPDF) all clean: - -rm $(IMGTGT) 2>/dev/null + -rm -f $(IMGTGT) 2>/dev/null $(BUILDDIR): $(Q)mkdir -p $@ @@ -85,4 +85,4 @@ $(BUILDDIR)/lirc.h.rst: ${UAPI}/lirc.h ${PARSER} $(SRC_DIR)/lirc.h.rst.exception @$($(quiet)gen_rst) cleandocs: - -rm ${TARGETS} + -rm -f ${TARGETS} |