Mercurial > mplayer.hg
changeset 29991:79720cbec672
Ignore errors from failing rm commands in clean targets.
This is also the policy we have in the top-level Makefile.
author | diego |
---|---|
date | Mon, 14 Dec 2009 03:19:01 +0000 |
parents | af94a2bdc185 |
children | 542d8831b5df |
files | DOCS/xml/Makefile |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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