summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2010-05-13 23:51:34 +0000
committerNorbert Preining <preining@logic.at>2010-05-13 23:51:34 +0000
commit85e07a59b01c0da0b0c264872e78158bf97851fa (patch)
tree2fa09d8477cdd8aea7573ece12aa4fda9c435c6b /Master
parent144f68e0714333adf7124c642d4520efe5de0d9e (diff)
fix $type undeclared
git-svn-id: svn://tug.org/texlive/trunk@18232 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index 5523a60eb67..c9e5bc55b54 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -554,7 +554,8 @@ sub handle_execute_actions
# addLuaMap handling
# if defined simply run the magic script
{
- if (defined($::execute_actions{$type}{'luamaps'}{'run'})) {
+ if (defined($::execute_actions{'enable'}{'luamaps'}{'run'}) ||
+ defined($::execute_actions{'disable'}{'luamaps'}{'run'})) {
# check for the existence, the PATH should be set up already
if (which("mkluatexfontdb-sys")) {
$errors += do_cmd_and_check("mkluatexfontdb-sys");