diff options
Diffstat (limited to 'Master/texmf-dist/web2c/mktexupd')
-rwxr-xr-x | Master/texmf-dist/web2c/mktexupd | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Master/texmf-dist/web2c/mktexupd b/Master/texmf-dist/web2c/mktexupd index 1636e683f45..a4938d96eec 100755 --- a/Master/texmf-dist/web2c/mktexupd +++ b/Master/texmf-dist/web2c/mktexupd @@ -3,11 +3,20 @@ # # Primarily written by Thomas Esser, Karl Berry, and Olaf Weber. # Public domain. -# $Id: mktexupd 18383 2010-05-20 18:31:24Z karl $ -version='$Id: mktexupd 18383 2010-05-20 18:31:24Z karl $' +version='$Id: mktexupd 34656 2014-07-18 23:38:50Z karl $' + +# preferentially use subprograms from our own directory. +mydir=`echo "$0" | sed 's,/[^/]*$,,'` +mydir=`cd "$mydir" && pwd` +PATH="$mydir:$PATH"; export PATH + usage="Usage: $0 DIR FILE. - Update the ls-R file with an entry for FILE in DIR." + Update the ls-R file with an entry for FILE in DIR. + +Report bugs to: tex-k@tug.org +TeX Live home page: <http://tug.org/texlive/> +" mt_min_args=2 mt_max_args=2 |