mirror of https://github.com/python/cpython.git
build_dvi(): Make sure we run latex enough times; this now matches the #
of times pdflatex would be run, which is correct.
This commit is contained in:
parent
240c35aac0
commit
1125488b24
|
@ -33,6 +33,7 @@ build_html() {
|
|||
}
|
||||
|
||||
build_dvi() {
|
||||
latex $1 || exit $?
|
||||
latex $1 || exit $?
|
||||
if [ -f $1.idx ] ; then
|
||||
`dirname $0`/fix_hack $1.idx || exit $?
|
||||
|
|
Loading…
Reference in New Issue