summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2011-10-23 23:39:48 +0000
committerNorbert Preining <preining@logic.at>2011-10-23 23:39:48 +0000
commita7ddc7becd08ba2a963e8f11ebef960efed7d43b (patch)
tree44caad0082ebb853080be101e4d578d318c1f81d
parentbdbc65f6c67a5a2bb41c7888c746eb3313e15884 (diff)
first step to get support for KanjiMap into TL, add the ability
to deal with KanjiMap to tlmgr and tl infra, trivial changes git-svn-id: svn://tug.org/texlive/trunk@24376 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl2
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index 8fd35f79e83..d97ff94f876 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -4083,7 +4083,7 @@ sub check_executes {
my (%maps,%langcodes,%fmtlines);
for my $pkg ($localtlpdb->list_packages) {
for my $e ($localtlpdb->get_package($pkg)->executes) {
- if ($e =~ m/add(Mixed)?Map\s+(.*)$/) {
+ if ($e =~ m/add(Mixed|Kanji)?Map\s+(.*)$/) {
my $foo = $2;
chomp($foo);
push @{$maps{$foo}}, $pkg;
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 2af7b8d65fb..c3350946789 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -1859,7 +1859,7 @@ sub announce_execute_actions {
}
$what = "map format hyphen" if (!defined($what));
foreach my $e ($tlp->executes) {
- if ($e =~ m/^add((Mixed)?Map)\s+([^\s]+)\s*$/) {
+ if ($e =~ m/^add((Mixed|Kanji)?Map)\s+([^\s]+)\s*$/) {
# save the refs as we have another =~ grep in the following lines
my $a = $1;
my $b = $3;