diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-24 23:03:32 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-24 23:03:32 (GMT) |
commit | 498c18f4d01e6875473270c6d33069eb284667fc (patch) | |
tree | 9ab78c1b8aa3c04f86e11d41167bcc8a8670c72d /Doc | |
parent | 82c330e591e8bfaf008d8e5334ef64ac30bd7bb2 (diff) | |
download | cpython-498c18f4d01e6875473270c6d33069eb284667fc.zip cpython-498c18f4d01e6875473270c6d33069eb284667fc.tar.gz cpython-498c18f4d01e6875473270c6d33069eb284667fc.tar.bz2 |
Only use one initialization file for LaTeX2HTML; more recent versions only
use the last one specified on the command line instead of all of them.
Smaller changes to reflect updated support.
Diffstat (limited to 'Doc')
-rwxr-xr-x | Doc/tools/mkhowto | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/tools/mkhowto b/Doc/tools/mkhowto index e7510b9..3dd744d 100755 --- a/Doc/tools/mkhowto +++ b/Doc/tools/mkhowto @@ -330,7 +330,6 @@ class Job: if not os.path.isdir(builddir): os.mkdir(builddir) args = [LATEX2HTML_BINARY, - "-init_file", L2H_INIT_FILE, "-init_file", self.l2h_aux_init_file, "-dir", builddir, texfile @@ -362,9 +361,13 @@ class Job: def write_l2h_aux_init_file(self): fp = open(self.l2h_aux_init_file, "w") - fp.write("# auxillary init file for latex2html\n" + fp.write(open(L2H_INIT_FILE).read()) + fp.write("\n" + "# auxillary init file for latex2html\n" "# generated by mkhowto\n" + "push (@INC, '%s');\n" "$NO_AUTO_LINK = 1;\n" + % os.path.dirname(L2H_INIT_FILE) ) options = self.options l2hoption(fp, "ABOUT_FILE", options.about_file) @@ -373,8 +376,6 @@ class Job: l2hoption(fp, "ADDRESS", options.address) l2hoption(fp, "MAX_LINK_DEPTH", options.max_link_depth) l2hoption(fp, "MAX_SPLIT_DEPTH", options.max_split_depth) - # this line needed in case $IMAGE_TYPE changed - fp.write("adjust_icon_information();\n") fp.write("1;\n") fp.close() |