Commit f6b6bbce authored by Fred Drake's avatar Fred Drake

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....
parent 4d46487f
#! /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;
# api, ext, lib, ref, or tut. All other args are passed on to latex2html.
# This is probably *not* useful outside of the standard Python documentation.
#
# 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`
cd `dirname $0`/..
......@@ -19,7 +21,7 @@ if [ -d $part ] ; then
rm -f $part/*.html
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"
latex2html \
-init_file $srcdir/perl/l2hinit.perl \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment