[MPlayer-DOCS] r30033 - trunk/DOCS/xml/Makefile

diego subversion at mplayerhq.hu
Mon Dec 14 04:19:01 CET 2009


Author: diego
Date: Mon Dec 14 04:19:01 2009
New Revision: 30033

Log:
Ignore errors from failing rm commands in clean targets.
This is also the policy we have in the top-level Makefile.

Modified:
   trunk/DOCS/xml/Makefile

Modified: trunk/DOCS/xml/Makefile
==============================================================================
--- trunk/DOCS/xml/Makefile	Mon Dec 14 04:17:23 2009	(r30032)
+++ trunk/DOCS/xml/Makefile	Mon Dec 14 04:19:01 2009	(r30033)
@@ -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
 


More information about the MPlayer-DOCS mailing list