diff options
author | Karl Berry <karl@freefriends.org> | 2014-07-18 23:38:50 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-07-18 23:38:50 +0000 |
commit | 66ddbb018c1d59c00133a25be6538c5e7a8022e8 (patch) | |
tree | 35bf21cd027bf50f96fa6427c653b33106f98e36 /Build/source/texk/kpathsea/mktexnam | |
parent | d66a478e29bb6753eca65870094236edfcef5b85 (diff) |
preferentially use subprograms from our own directory
git-svn-id: svn://tug.org/texlive/trunk@34656 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/mktexnam')
-rwxr-xr-x | Build/source/texk/kpathsea/mktexnam | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/mktexnam b/Build/source/texk/kpathsea/mktexnam index 69a975cdc79..958f42bc54c 100755 --- a/Build/source/texk/kpathsea/mktexnam +++ b/Build/source/texk/kpathsea/mktexnam @@ -4,8 +4,18 @@ # Public domain. version='$Id$' + +# preferentially use subprograms from our own directory. +mydir=`echo "$0" | sed 's,/[^/]*$,,'` +mydir=`cd "$mydir" && pwd` +PATH="$mydir:$PATH"; export PATH + usage="Usage: $0 NAME [DPI MODE] [DESTDIR]. - Output the PK, TFM, and MF names for a font NAME." + Output the PK, TFM, and MF names for a font NAME. + +Report bugs to: tex-k@tug.org +TeX Live home page: <http://tug.org/texlive/> +" mt_max_args=4 # Common code for all scripts. |