summaryrefslogtreecommitdiff
path: root/Master/texmf/scripts/texlive/tlmgr.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2011-10-27 14:06:37 +0000
committerNorbert Preining <preining@logic.at>2011-10-27 14:06:37 +0000
commitc3f82c633a83fb95447b376555991bf897b90929 (patch)
tree204b7c012cd34211d843209bbb5b5b96b582d087 /Master/texmf/scripts/texlive/tlmgr.pl
parent3e87c9e53ad19d8ea0e165f32a34a2c48a366a3a (diff)
ignore @KanjiEmbed@ string containing maps in tlmgr check executes
git-svn-id: svn://tug.org/texlive/trunk@24419 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts/texlive/tlmgr.pl')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl4
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);