Commit 323dc70d authored by Fred Drake's avatar Fred Drake

Don't be so ugly as to use "set -x" to get the executed commands printed.

parent 2e7edb80
......@@ -16,15 +16,16 @@ TEXINPUTS=$srcdir/$part:$TEXINPUTS
export TEXINPUTS
if [ -d $part ] ; then
(set -x; rm -f $part/*.html)
rm -f $part/*.html
fi
set -x
echo "latex2html -init_file $srcdir/perl/l2hinit.perl ${1:+$@} " \
"$srcdir/$part/$part.tex"
latex2html \
-init_file $srcdir/perl/l2hinit.perl \
${1:+$@} \
$srcdir/$part/$part.tex
echo '(cd '$part'; '$srcdir'/tools/node2label.pl *.html)'
cd $part
$srcdir/tools/node2label.pl *.html
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