mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-07 11:20:04 -04:00
41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
$NetBSD: patch-ai,v 1.3 2015/06/14 11:12:37 markd Exp $
|
|
|
|
--- mktexmf.orig 2014-07-18 23:38:50.000000000 +0000
|
|
+++ mktexmf
|
|
@@ -24,8 +24,8 @@ TeX Live home page: <http://tug.org/texl
|
|
"
|
|
|
|
# Common code for all scripts.
|
|
-: ${MT_TEXMFMAIN=`kpsewhich --expand-path='$TEXMFMAIN'`}
|
|
-: ${MT_MKTEX_OPT=`kpsewhich --format='web2c files' mktex.opt`}
|
|
+: ${MT_TEXMFMAIN=`@KPSEWHICH@ --expand-path='$TEXMFMAIN'`}
|
|
+: ${MT_MKTEX_OPT=`@KPSEWHICH@ --format='web2c files' mktex.opt`}
|
|
test -n "$MT_MKTEX_OPT" || MT_MKTEX_OPT="$MT_TEXMFMAIN/web2c/mktex.opt"
|
|
if test ! -f "$MT_MKTEX_OPT"; then
|
|
echo "$progname: Cannot find mktex.opt; check your installation." >&2
|
|
@@ -40,7 +40,7 @@ name="`echo $1 | sed 's%.*/%%; s%\.mf$%%
|
|
rootname=`echo "$name" | sed 's/[0-9]*$//'`
|
|
pointsize=`echo "$name" | sed "s/^$rootname//"`
|
|
|
|
-sauterroot=`kpsewhich b-$rootname.mf 2>/dev/null`
|
|
+sauterroot=`@KPSEWHICH@ b-$rootname.mf 2>/dev/null`
|
|
if test -n "$sauterroot"; then
|
|
rootfile=$sauterroot
|
|
rootname=b-$rootname
|
|
@@ -52,12 +52,12 @@ else
|
|
*)
|
|
case $rootname in
|
|
cs*|lcsss*|icscsc*|icstt*|ilcsss*)
|
|
- rootfile=`kpsewhich cscode.mf`;;
|
|
+ rootfile=`@KPSEWHICH@ cscode.mf`;;
|
|
wn[bcdfirstuv]*|rx[bcdfiorstuvx][bcfhilmostx]|l[abcdhl][bcdfiorstuvx]*)
|
|
lhprefix=`echo "$name" | sed 's/^\(..\).*/\1/'`
|
|
- rootfile=`kpsewhich ${lhprefix}codes.mf 2>/dev/null`;;
|
|
+ rootfile=`@KPSEWHICH@ ${lhprefix}codes.mf 2>/dev/null`;;
|
|
*)
|
|
- rootfile=`kpsewhich $rootname.mf 2>/dev/null`;;
|
|
+ rootfile=`@KPSEWHICH@ $rootname.mf 2>/dev/null`;;
|
|
esac;;
|
|
esac
|
|
fi
|