diff options
author | Ken Brown <kbrow1i@gmail.com> | 2015-04-12 15:53:37 +0000 |
---|---|---|
committer | Ken Brown <kbrow1i@gmail.com> | 2015-04-12 15:53:37 +0000 |
commit | 26ec4f05ea57d878b158085bdeabd9befaa444d9 (patch) | |
tree | fa697cbe0fa91a3d3310ebda91fd9cf702545ecc /Master/bin/i386-cygwin/mktextfm | |
parent | c91e5ce2ac153a90a8d58bd0383f9a1c2d69c42c (diff) |
First build of 2015 binaries on i386-cygwin
git-svn-id: svn://tug.org/texlive/trunk@36789 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/i386-cygwin/mktextfm')
-rwxr-xr-x | Master/bin/i386-cygwin/mktextfm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Master/bin/i386-cygwin/mktextfm b/Master/bin/i386-cygwin/mktextfm index bc65668e92e..46e30a9c5dc 100755 --- a/Master/bin/i386-cygwin/mktextfm +++ b/Master/bin/i386-cygwin/mktextfm @@ -7,13 +7,23 @@ # Primarily written by Thomas Esser, Karl Berry, and Olaf Weber. # Public domain. -version='$Id: mktextfm 16497 2009-12-24 18:38:47Z karl $' +version='$Id: mktextfm 34656 2014-07-18 23:38:50Z karl $' progname=`echo $0 | sed 's%.*/%%'` + +# preferentially use subprograms from our own directory. +mydir=`echo "$0" | sed 's,/[^/]*$,,'` +mydir=`cd "$mydir" && pwd` +PATH="$mydir:$PATH"; export PATH + usage="Usage: $progname [--destdir DESTDIR] FONT. Makes a TFM file for FONT, if possible. Use DESTDIR for the root of where to install into, either the absolute directory name to use (if it starts -with a /) or relative to the default DESTDIR (if not)." +with a /) or relative to the default DESTDIR (if not). + +Report bugs to: tex-k@tug.org +TeX Live home page: <http://tug.org/texlive/> +" # Handle non-positional options, except for --version/--help while test $# -gt 0; do |