diff options
author | Georg Brandl <georg@python.org> | 2010-07-11 08:33:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-11 08:33:16 (GMT) |
commit | 692b3f8035630f88523700a9f8c6a717b6d2f4ba (patch) | |
tree | ea0c43bc46724f326c80aa1b01e09f936e1fc1b9 /Doc/Makefile | |
parent | aba088e01d7cf246dad41e90c379afdc63d3b960 (diff) | |
download | cpython-692b3f8035630f88523700a9f8c6a717b6d2f4ba.zip cpython-692b3f8035630f88523700a9f8c6a717b6d2f4ba.tar.gz cpython-692b3f8035630f88523700a9f8c6a717b6d2f4ba.tar.bz2 |
Silence makeindex.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index f5c890c..f62b25b 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 |