diff options
author | Georg Brandl <georg@python.org> | 2010-07-11 08:57:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-11 08:57:05 (GMT) |
commit | 2e73a3f39e6a49c99ab29da61156f01489cb392a (patch) | |
tree | 43a50e8297a97db1510301d80b0b6c9d66c081e8 /Doc/Makefile | |
parent | 04eba2ccdd3427d97cd20d59c3a58bc1ab930820 (diff) | |
download | cpython-2e73a3f39e6a49c99ab29da61156f01489cb392a.zip cpython-2e73a3f39e6a49c99ab29da61156f01489cb392a.tar.gz cpython-2e73a3f39e6a49c99ab29da61156f01489cb392a.tar.bz2 |
Merged revisions 82789 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82789 | georg.brandl | 2010-07-11 10:33:16 +0200 (So, 11 Jul 2010) | 1 line
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 |