diff options
author | Karl Berry <karl@freefriends.org> | 2022-03-05 21:19:01 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2022-03-05 21:19:01 +0000 |
commit | 531831309cfa8f9d0d6977961f9a2bea0e18086f (patch) | |
tree | 702eaccc43125e50f0e2fd976eb9e7673c76bc45 /Master/texmf-dist/source/fonts | |
parent | 67da68b691ab4ae95dad681fe32ced47f19f8626 (diff) |
japanese-otf (5mar22)
git-svn-id: svn://tug.org/texlive/trunk@62455 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/fonts')
-rw-r--r-- | Master/texmf-dist/source/fonts/japanese-otf/script/mkcidofm.pl | 2 | ||||
-rw-r--r-- | Master/texmf-dist/source/fonts/japanese-otf/script/mkpropofm.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/source/fonts/japanese-otf/script/mkcidofm.pl b/Master/texmf-dist/source/fonts/japanese-otf/script/mkcidofm.pl index 5938984b2f8..4b4d34b1293 100644 --- a/Master/texmf-dist/source/fonts/japanese-otf/script/mkcidofm.pl +++ b/Master/texmf-dist/source/fonts/japanese-otf/script/mkcidofm.pl @@ -8,7 +8,7 @@ for ($d=0; $d<=1; $d++){ $font_name="otf-$base_name-$dir"; open(OPL, ">opl/$font_name.opl") || die "cannot make file"; print OPL "(OFMLEVEL D 1)\n"; - print OPL "(FONTDIR TL)\n"; + printf OPL "(FONTDIR %s)\n", $d==1 ? "RT" : "TL"; print OPL "(FAMILY HIRAMIN)\n"; print OPL "(FACE F MRR)\n"; print OPL "(CODINGSCHEME UNSPECIFIED)\n"; diff --git a/Master/texmf-dist/source/fonts/japanese-otf/script/mkpropofm.pl b/Master/texmf-dist/source/fonts/japanese-otf/script/mkpropofm.pl index b697cd5192a..206b4f9e3bf 100644 --- a/Master/texmf-dist/source/fonts/japanese-otf/script/mkpropofm.pl +++ b/Master/texmf-dist/source/fonts/japanese-otf/script/mkpropofm.pl @@ -18,7 +18,7 @@ foreach $base_name(@font_base_name){ $font_name="$base_name-$dir"; open(OPL, ">opl/$font_name.opl") || die "cannot make file"; print OPL "(OFMLEVEL D 1)\n"; - print OPL "(FONTDIR TL)\n"; + printf OPL "(FONTDIR %s)\n", $d==1 ? "RT" : "TL"; print OPL "(FAMILY HIRAMIN)\n"; print OPL "(FACE F MRR)\n"; print OPL "(CODINGSCHEME UNSPECIFIED)\n"; |