diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-18 22:06:13 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-18 22:06:13 (GMT) |
commit | 1125488b248052be32fcaf04fabd390d19760fb1 (patch) | |
tree | 3e6e703c2af4210772a8cace5a0678abeae90421 /Doc | |
parent | 240c35aac081c35b4b746ba43b09c13dce2f6f71 (diff) | |
download | cpython-1125488b248052be32fcaf04fabd390d19760fb1.zip cpython-1125488b248052be32fcaf04fabd390d19760fb1.tar.gz cpython-1125488b248052be32fcaf04fabd390d19760fb1.tar.bz2 |
build_dvi(): Make sure we run latex enough times; this now matches the #
of times pdflatex would be run, which is correct.
Diffstat (limited to 'Doc')
-rwxr-xr-x | Doc/tools/mkhowto.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 0541c85..6b6bb96 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -34,6 +34,7 @@ build_html() { build_dvi() { latex $1 || exit $? + latex $1 || exit $? if [ -f $1.idx ] ; then `dirname $0`/fix_hack $1.idx || exit $? makeindex $1.idx || exit $? |