[Python-checkins] r82794 - in python/branches/release27-maint: Doc/Makefile

georg.brandl python-checkins at python.org
Sun Jul 11 10:57:05 CEST 2010


Author: georg.brandl
Date: Sun Jul 11 10:57:05 2010
New Revision: 82794

Log:
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.
........


Modified:
   python/branches/release27-maint/   (props changed)
   python/branches/release27-maint/Doc/Makefile

Modified: python/branches/release27-maint/Doc/Makefile
==============================================================================
--- python/branches/release27-maint/Doc/Makefile	(original)
+++ python/branches/release27-maint/Doc/Makefile	Sun Jul 11 10:57:05 2010
@@ -144,6 +144,7 @@
 	# 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 @@
 	# 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


More information about the Python-checkins mailing list