diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/bin/win32/luaotfload-tool.exe (renamed from Master/bin/win32/luaotfload-tool) | bin | 1536 -> 1536 bytes | |||
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 12 |
2 files changed, 9 insertions, 3 deletions
diff --git a/Master/bin/win32/luaotfload-tool b/Master/bin/win32/luaotfload-tool.exe Binary files differindex 5777d90a17a..5777d90a17a 100755 --- a/Master/bin/win32/luaotfload-tool +++ b/Master/bin/win32/luaotfload-tool.exe diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 780575c8aaf..090327795d9 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -2342,7 +2342,7 @@ $standardxmt='\.xmt'; 'dtxgen' => 'dtxgen$', 'dviasm' => '\.py$', 'ebong' => '\.py$', - 'epstopdf' => 'epstopdf\.pl', # doscripts() does r* + 'epstopdf' => 'epstopdf\.pl', # doscripts() does r* 'exceltex' => 'exceltex$', 'fig4latex' => 'fig4latex', 'findhyph' => 'findhyph$', @@ -2358,13 +2358,14 @@ $standardxmt='\.xmt'; 'listings-ext' => '\.sh$', 'ltxfileinfo' => 'ltxfileinfo$', 'lua2dox' => 'lua2dox_filter?$', + 'luaotfload' => 'luaotfload-tool', # doscripts() does mklua*db 'match_parens' => '^match_parens$', 'mathspic' => '^mathspic\.pl$', 'mf2pt1' => '\.pl$', 'mkgrkindex' => 'mkgrkindex$', 'mkjobtexmf' => 'mkjobtexmf\.pl$', 'musixtex' => '\.lua$', - 'pdfcrop' => '\.pl$', # doscripts() does r* + 'pdfcrop' => '\.pl$', # doscripts() does r* 'pdfjam' => 'pdf[^.]*$', 'pedigree-perl' => '\.pl$', 'perltex' => '\.pl$', @@ -3076,7 +3077,10 @@ sub doscripts { # # Scripts with special cases. &SYSTEM ("ln -s $linkname $platdir/r$linkname") - if $linkname =~ /pdfcrop|epstopdf/; # rpdfcrop -> pdfcrop + if $linkname =~ /pdfcrop|epstopdf/; # rpdfcrop ->pdfcrop, ... + &SYSTEM ("ln -s $linkname $platdir/mkluatexfontdb") + if $linkname =~ /luaotfload-tool/; # mkluatexfontdb ->luaotfload-tool + } else { # Windows. If a shell script, skip. Else copy the wrapper. next if $s =~ /\.sh$/ && $s !~ /-sys\.sh$/; @@ -3093,6 +3097,8 @@ sub doscripts { &SYSTEM ("$CP $w32_wrapper $platdir/$linkname.exe"); &SYSTEM ("$CP $w32_wrapper $platdir/r$linkname.exe") if $linkname =~ /pdfcrop|epstopdf/; # r{pdfcrop,epstopdf}.exe + &SYSTEM ("$CP $w32_wrapper $platdir/mkluatexfontdb.exe") + if $linkname =~ /luaotfload-tool/; # mkluatexfontdb.exe } } } |