diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-15 17:13:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-15 17:13:08 (GMT) |
commit | 8dbf46a79ead9deb683cfd52e5b58da99bacf075 (patch) | |
tree | 7b377357996f8724884118f1838e35cda80f5516 | |
parent | e0a0fcd552f6e84202b4c17858ead15aa611f76d (diff) | |
download | cpython-8dbf46a79ead9deb683cfd52e5b58da99bacf075.zip cpython-8dbf46a79ead9deb683cfd52e5b58da99bacf075.tar.gz cpython-8dbf46a79ead9deb683cfd52e5b58da99bacf075.tar.bz2 |
Update to use latex2html 98.1p5.
Cleanup temporary files produced by latex2html in the output directory.
-rwxr-xr-x | Doc/tools/mkhowto.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/tools/mkhowto.sh b/Doc/tools/mkhowto.sh index 6565976..ac06ceb 100755 --- a/Doc/tools/mkhowto.sh +++ b/Doc/tools/mkhowto.sh @@ -64,7 +64,7 @@ build_html() { latex2html -init_file $L2H_INIT_FILE \ -address "$ADDRESS" \ -link $MAX_LINK_DEPTH -split $MAX_SPLIT_DEPTH \ - $1 || exit $? + -dir $1 $TEXFILE || exit $? else latex2html -init_file $L2H_INIT_FILE \ -link $MAX_LINK_DEPTH -split $MAX_SPLIT_DEPTH \ @@ -126,6 +126,7 @@ cleanup() { if [ ! "$BUILD_DVI" ] ; then rm -f $1.dvi fi + rm -f $1/IMG* $1/*.pl $1/WARNINGS $1/index.dat $1/modindex.dat } # figure out what our targets are: |