Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c54b6b37 authored by Jonathan Corbet's avatar Jonathan Corbet
Browse files

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: default avatarJonathan Corbet <corbet@lwn.net>
parent 15a04d4e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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}