mirror of
https://github.com/python/cpython.git
synced 2025-11-06 13:01:22 +00:00
Don't be so ugly as to use "set -x" to get the executed commands printed.
This commit is contained in:
parent
2e7edb80e3
commit
323dc70de5
1 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue