From 498c18f4d01e6875473270c6d33069eb284667fc Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 24 Jul 2000 23:03:32 +0000 Subject: 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. --- Doc/tools/mkhowto | 9 +++++---- 1 file 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() -- cgit v0.12