summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2010-05-31 16:35:03 +0000
committerNorbert Preining <preining@logic.at>2010-05-31 16:35:03 +0000
commitd9dc53f237ba788be1795fa769eb1b065a21f80a (patch)
tree75cad59361f6877f35194ab86a6b7a4928f224b3 /Master
parente9fc5f42ab453bfb4e380ed7ad4e2efc4a3cbb3c (diff)
fix dummy "regenerating format blabla" for disabled formats
git-svn-id: svn://tug.org/texlive/trunk@18648 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index b068fa883f7..fe8401feae2 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -649,6 +649,8 @@ sub handle_execute_actions
# now rebuild all other formats
for my $f (keys %do_enable) {
next if defined($updated_engines{$format_to_engine{$f}});
+ # ignore disabled formats
+ next if !$::execute_actions{'enable'}{'formats'}{$f}{'mode'};
log ("(re)creating format dump $f\n");
$errors += do_cmd_and_check("fmtutil-sys --byfmt $f");
$done_formats{$f} = 1;