summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2015-10-06 02:49:58 +0000
committerNorbert Preining <preining@logic.at>2015-10-06 02:49:58 +0000
commitd8587cbb3e3316abbf0b339508f4a8bffea00fdb (patch)
tree8dc260226c08ed110fc19f250bed0fdbafe49726
parentffcb858b349bf3f927c876706f8963569d78f854 (diff)
tlmgr: make sure that babel updates trigger a format rebuild
git-svn-id: svn://tug.org/texlive/trunk@38566 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl4
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"});
}