diff options
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 30570fcba21..7f3e38383ce 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -4107,7 +4107,9 @@ sub check_executes { if ($e =~ m/add(Mixed|Kanji)?Map\s+(.*)$/) { my $foo = $2; chomp($foo); - push @{$maps{$foo}}, $pkg; + if ($foo !~ m/\@kanjiEmbed@/) { + push @{$maps{$foo}}, $pkg; + } } elsif ($e =~ m/AddFormat\s+(.*)$/) { my $foo = $1; chomp($foo); |