# HG changeset patch # User diego # Date 1260760741 0 # Node ID 79720cbec6726e7de766db7e4d5f88a31397eb5a # Parent af94a2bdc185d9fbe25fc1087379fd2063df670e Ignore errors from failing rm commands in clean targets. This is also the policy we have in the top-level Makefile. diff -r af94a2bdc185 -r 79720cbec672 DOCS/xml/Makefile --- a/DOCS/xml/Makefile Mon Dec 14 03:17:23 2009 +0000 +++ b/DOCS/xml/Makefile Mon Dec 14 03:19:01 2009 +0000 @@ -52,12 +52,12 @@ $(foreach lang, $(DOC_LANG_ALL),$(eval $(call lang-def,$(lang)))) clean: - rm -rf $(HTML) + -rm -rf $(HTML) releaseclean: - rm -f $(CONFIGURE_GENERATED) - rm -f $(MAIN_XML_ALL) - rm -f $$(find . -name *.xml -type l) + -rm -f $(CONFIGURE_GENERATED) + -rm -f $(MAIN_XML_ALL) + -rm -f $$(find . -name *.xml -type l) distclean: clean releaseclean