From: Fred Drake Date: Wed, 18 Mar 1998 22:06:13 +0000 (+0000) Subject: build_dvi(): Make sure we run latex enough times; this now matches the # X-Git-Tag: v1.5.1~334 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1125488b248052be32fcaf04fabd390d19760fb1;p=thirdparty%2FPython%2Fcpython.git build_dvi(): Make sure we run latex enough times; this now matches the # of times pdflatex would be run, which is correct. --- diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 0541c85bbd9e..6b6bb962c614 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -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 $?