From: Fred Drake Date: Fri, 8 May 1998 04:00:56 +0000 (+0000) Subject: Some versions of latex2html don't automatically append the .tex extension to X-Git-Tag: v1.5.2a1~700 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4166a478a1405f21753189970ef9083d5a4601c;p=python Some versions of latex2html don't automatically append the .tex extension to the name of the main .tex source file if it's not in the current directory. --- diff --git a/Doc/tools/mkhtml.sh b/Doc/tools/mkhtml.sh index 336d6df549..e0f34b8c56 100755 --- a/Doc/tools/mkhtml.sh +++ b/Doc/tools/mkhtml.sh @@ -21,7 +21,10 @@ fi set -x -latex2html -init_file $srcdir/perl/l2hinit.perl ${1:+$@} $srcdir/$part/$part +latex2html \ + -init_file $srcdir/perl/l2hinit.perl \ + ${1:+$@} \ + $srcdir/$part/$part.tex cd $part $srcdir/tools/node2label.pl *.html