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

This commit is contained in:
Fred Drake 1998-05-11 18:41:16 +00:00
parent 2e7edb80e3
commit 323dc70de5
1 changed files with 4 additions and 3 deletions

View File

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