From: Georg Brandl Date: Sun, 11 Jul 2010 08:33:16 +0000 (+0000) Subject: Silence makeindex. X-Git-Tag: v3.2a1~233 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=692b3f8035630f88523700a9f8c6a717b6d2f4ba;p=thirdparty%2FPython%2Fcpython.git Silence makeindex. --- diff --git a/Doc/Makefile b/Doc/Makefile index f5c890c60b70..f62b25ba65c2 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -144,6 +144,7 @@ dist: # archive the A4 latex -rm -r 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) cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2 @@ -151,6 +152,7 @@ dist: # archive the letter latex rm -r 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) cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-letter.zip cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-letter.tar.bz2