Add a comment explaining that this script is probably not useful outside the

standard Python documentation, since the mkhowto.sh script is.  Let there be
no doubts....
This commit is contained in:
Fred Drake 1998-08-11 14:10:40 +00:00
parent 4d46487fe8
commit f6b6bbceb6
1 changed files with 6 additions and 4 deletions

View File

@ -1,9 +1,11 @@
#! /bin/sh #! /bin/sh
# #
# Drive HTML generation for a Python manual. # Drive HTML generation for a Python manual.
# #
# The first arg is required and is the designation for which manual to build; # This is probably *not* useful outside of the standard Python documentation.
# api, ext, lib, ref, or tut. All other args are passed on to latex2html. #
# The first arg is required and is the designation for which manual to build;
# api, ext, lib, ref, or tut. All other args are passed on to latex2html.
WORKDIR=`pwd` WORKDIR=`pwd`
cd `dirname $0`/.. cd `dirname $0`/..
@ -19,7 +21,7 @@ if [ -d $part ] ; then
rm -f $part/*.html rm -f $part/*.html
fi fi
echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part " \ echo "latex2html -init_file $srcdir/perl/l2hinit.perl -dir $part" \
"${1:+$@} $srcdir/$part/$part.tex" "${1:+$@} $srcdir/$part/$part.tex"
latex2html \ latex2html \
-init_file $srcdir/perl/l2hinit.perl \ -init_file $srcdir/perl/l2hinit.perl \