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:
Fred Drake 1998-03-18 22:06:13 +00:00
parent 240c35aac0
commit 1125488b24
1 changed files with 1 additions and 0 deletions

View File

@ -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 $?