summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg')
-rw-r--r--Master/tlpkg/TeXLive/TLPOBJ.pm10
1 files changed, 8 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm
index 34d7938fe0a..e42f00c2020 100644
--- a/Master/tlpkg/TeXLive/TLPOBJ.pm
+++ b/Master/tlpkg/TeXLive/TLPOBJ.pm
@@ -949,16 +949,22 @@ sub updmap_cfg_lines {
$maps{$1} = 1;
} elsif ($e =~ m/addMixedMap (.*)$/) {
$maps{$1} = 2;
+ } elsif ($e =~ m/addKanjiMap (.*)$/) {
+ $maps{$1} = 3;
}
# others are ignored here
}
my @updmaplines;
foreach (sort keys %maps) {
next if TeXLive::TLUtils::member($_, @disabled);
- if ($maps{$_} == 2) {
+ if ($maps{$_} == 1) {
+ push @updmaplines, "Map $_\n";
+ } elsif ($maps{$_} == 2) {
push @updmaplines, "MixedMap $_\n";
+ } elsif ($maps{$_} == 3) {
+ push @updmaplines, "KanjiMap $_\n";
} else {
- push @updmaplines, "Map $_\n";
+ tlerror("Should not happen!\n");
}
}
return(@updmaplines);