|
From: <as...@us...> - 2010-06-29 21:44:25
|
Revision: 8477
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8477&view=rev
Author: astraw
Date: 2010-06-29 21:44:19 +0000 (Tue, 29 Jun 2010)
Log Message:
-----------
docs: build with makefile produced by Sphinx
Modified Paths:
--------------
trunk/matplotlib/doc/make.py
Modified: trunk/matplotlib/doc/make.py
===================================================================
--- trunk/matplotlib/doc/make.py 2010-06-29 13:30:09 UTC (rev 8476)
+++ trunk/matplotlib/doc/make.py 2010-06-29 21:44:19 UTC (rev 8477)
@@ -52,12 +52,8 @@
# Produce pdf.
os.chdir('build/latex')
- # Copying the makefile produced by sphinx...
- if (os.system('pdflatex Matplotlib.tex') or
- os.system('pdflatex Matplotlib.tex') or
- os.system('makeindex -s python.ist Matplotlib.idx') or
- os.system('makeindex -s python.ist modMatplotlib.idx') or
- os.system('pdflatex Matplotlib.tex')):
+ # Call the makefile produced by sphinx...
+ if os.system('make'):
raise SystemExit("Rendering LaTeX failed.")
os.chdir('../..')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|