From f39814302d390978c310a52d2543a91de83f20aa Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 14 Dec 2009 03:19:01 +0000 Subject: Ignore errors from failing rm commands in clean targets. This is also the policy we have in the top-level Makefile. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30033 b3059339-0415-0410-9bf9-f77b7e298cf2 --- DOCS/xml/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile index d39a56d5f1..ec92ca545d 100644 --- a/DOCS/xml/Makefile +++ b/DOCS/xml/Makefile @@ -52,12 +52,12 @@ endef $(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 -- cgit v1.2.3