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
This commit is contained in:
diego 2009-12-14 03:19:01 +00:00
parent ac50f58248
commit f39814302d
1 changed files with 4 additions and 4 deletions

View File

@ -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