From: Fred Drake Date: Mon, 3 May 1999 14:27:45 +0000 (+0000) Subject: Make sure latex2html doesn't produce a hard link from $part/$part.html X-Git-Tag: v1.6a1~1397 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2d1eef0250f786e8d8d69167452b8eee83998da;p=python Make sure latex2html doesn't produce a hard link from $part/$part.html and $part/index.html. Make a copy instead. (Appearantly some tar openers on non-Unixlike systems can't handle hard links.) --- diff --git a/Doc/tools/mkhtml.sh b/Doc/tools/mkhtml.sh index 8857ef835b..11f7feac78 100755 --- a/Doc/tools/mkhtml.sh +++ b/Doc/tools/mkhtml.sh @@ -32,12 +32,15 @@ fi echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part" \ "${1:+$@} $srcdir/$part/$part.tex" latex2html \ + -no_auto_link \ -init_file $srcdir/perl/l2hinit.perl \ - -address '
Send comments to python-docs@python.org.' \ + -address '
Send comments on this document to python-docs@python.org.' \ -dir $part \ ${1:+$@} \ $srcdir/$part/$part.tex || exit $? +cp $part/$part.html $part/index.html + # copy in the stylesheet echo "cp $srcdir/html/style.css $part/$part.css" cp $srcdir/html/style.css $part/$part.css || exit $?