summaryrefslogtreecommitdiff
path: root/systems/unix/tex-fpc/shell
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2021-02-16 03:01:00 +0000
committerNorbert Preining <norbert@preining.info>2021-02-16 03:01:00 +0000
commit6893799c8c61ef6b96a867686642fc0d813adab1 (patch)
tree52b02c7dadffbded19a10c564d430eb4406100cd /systems/unix/tex-fpc/shell
parent8fb1cfd3d240ef62d78c2320bd90f8f07b7916fa (diff)
CTAN sync 202102160300
Diffstat (limited to 'systems/unix/tex-fpc/shell')
-rwxr-xr-xsystems/unix/tex-fpc/shell/mkfont9
1 files changed, 4 insertions, 5 deletions
diff --git a/systems/unix/tex-fpc/shell/mkfont b/systems/unix/tex-fpc/shell/mkfont
index 34b2eb7849..735ca9ad6f 100755
--- a/systems/unix/tex-fpc/shell/mkfont
+++ b/systems/unix/tex-fpc/shell/mkfont
@@ -1,4 +1,4 @@
-# Install .tfm and . pk files from .mf files for TeX-FPC
+# Install .tfm files from .mf files for TeX-FPC
f=`basename $1 .mf`
case $# in
1) mag=1;;
@@ -6,9 +6,8 @@ case $# in
*) echo Usage: $0 mf-file [ magnification ]; exit 1
esac
rm -f $f.*gf
-mf "\\mode=localfont; mag=$mag; batchmode; input $1"\
-&& gftopk $f.*gf `echo $f.*gf | sed 's/gf$/pk/'` \
-&& mv $f.*pk PKfonts/ \
+mf "\\mode=localfont; batchmode; input $1"\
&& mv $f.tfm TeXfonts/ \
&& rm $f.log && rm $f.*gf \
-|| echo $0 $1 $mag >>trouble
+&& echo $1.tfm installed \
+|| (echo $0 $1 $mag >>trouble; echo $f failed, see file trouble)