From: Georg Brandl Date: Tue, 3 Aug 2010 12:37:34 +0000 (+0000) Subject: Merged revisions 83663 via svnmerge from X-Git-Tag: v3.1.3rc1~405 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=203947fa590996f4811c787cb85d1d366a77faee;p=python Merged revisions 83663 via svnmerge from svn+ssh://svn.python.org/python/branches/py3k ........ r83663 | georg.brandl | 2010-08-03 14:36:57 +0200 (Di, 03 Aug 2010) | 1 line A couple of nits how to ignore errors. ........ --- diff --git a/Doc/Makefile b/Doc/Makefile index 7156e5381e..5c39d8bdf0 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -119,7 +119,7 @@ clean: -rm -rf tools/docutils dist: - -rm -rf dist + rm -rf dist mkdir -p dist # archive the HTML @@ -141,7 +141,7 @@ dist: rm dist/python-$(DISTVERSION)-docs-text.tar # archive the A4 latex - -rm -r build/latex + rm -rf build/latex make latex PAPER=a4 -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2) @@ -149,7 +149,7 @@ dist: cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2 # archive the letter latex - rm -r build/latex + rm -rf build/latex make latex PAPER=letter -sed -i 's/makeindex/makeindex -q/' build/latex/Makefile (cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)