diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 4d7597888d2..6b096ffdffa 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -3300,7 +3300,9 @@ sub action_update { # if one of latex or tex has been updated, we rebuild the formats # defined in packages *depending* on these packages. if (!$opts{"list"}) { - TeXLive::TLUtils::announce_execute_actions("latex-updated") if ($updated{"latex"}); + if ($updated{"latex"} || $updated{"babel"}) { + TeXLive::TLUtils::announce_execute_actions("latex-updated"); + } TeXLive::TLUtils::announce_execute_actions("tex-updated") if ($updated{"tex"}); } |