diff options
author | Norbert Preining <preining@logic.at> | 2017-01-15 11:47:53 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2017-01-15 11:47:53 +0000 |
commit | d51bd99a92352451a83cc18a178c674f09502f6b (patch) | |
tree | 061fa533040429ca8c34eeb03c40f32c747c0ec2 /Master/texmf-dist/scripts | |
parent | f1af61e93d0712028cba1a29744744d67c59dfc0 (diff) |
fix check-executes for new names of embedding variables
git-svn-id: svn://tug.org/texlive/trunk@42960 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 7232e22bc93..096673a9b2a 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -5068,7 +5068,7 @@ sub check_executes { if ($e =~ m/add(Mixed|Kanji)?Map\s+(.*)$/) { my $foo = $2; chomp($foo); - if ($foo !~ m/\@kanjiEmbed@/) { + if ($foo !~ m/\@(kanji|ja|tc|sc|ko)Embed@/) { push @{$maps{$foo}}, $pkg; } } elsif ($e =~ m/AddFormat\s+(.*)$/) { |