diff options
author | Karl Berry <karl@freefriends.org> | 2015-04-12 16:20:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-04-12 16:20:42 +0000 |
commit | 99ebd94045fb45ebcb04f4d78cf78abf75fded8e (patch) | |
tree | c76af7be21a47acb09701b89aafe67c08a49547d /Master/texmf-dist/web2c/mktexupd | |
parent | dfc1c99f1030854f63b0a01745a2b39f942887da (diff) |
sync config scripts and files from Build to Master
git-svn-id: svn://tug.org/texlive/trunk@36791 c570f23f-e606-0410-a88d-b1316a301751
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 |