Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c4e9263

Browse files
committed
Add a few comments.
1 parent 38df3c3 commit c4e9263

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

Doc/tools/mkinfo

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#! /bin/sh
22
# -*- Ksh -*-
33

4+
# Script to drive the HTML-info conversion process.
5+
# Pass in a single parameter: the name of the top-level HTML file
6+
# generated by LaTeX2HTML.
7+
#
8+
# Written by Fred L. Drake, Jr. <[email protected]>
49

510
PERL=${PERL:-perl}
611
EMACS=${EMACS:-emacs}
@@ -14,6 +19,7 @@ DOCDIR=`dirname "$FILENAME"`
1419
DOCFILE=`basename "$FILENAME"`
1520
DOCNAME=`basename "$FILENAME" .html`
1621

22+
# Now build the real directory names, and locate our support stuff:
1723
WORKDIR=`pwd`
1824
cd `dirname $0`
1925
TOOLSDIR=`pwd`
@@ -23,7 +29,8 @@ cd $WORKDIR
2329

2430

2531
run() {
26-
echo "$@"
32+
# show what we're doing, like make does:
33+
echo "$*"
2734
$* || exit $?
2835
}
2936

0 commit comments

Comments
 (0)