diff options
author | Karl Berry <karl@freefriends.org> | 2020-03-09 22:26:52 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-03-09 22:26:52 +0000 |
commit | 8035e5b0697335b072a31a034c76afa439eddcc9 (patch) | |
tree | 77faef59743e8f1b1834cf25d57a4bc2128475f0 /Master | |
parent | d2a943318ab31a6ea996397cd30f1f6682c4eacd (diff) |
info msg with pkgs with catalogue changes
git-svn-id: svn://tug.org/texlive/trunk@54214 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlpdb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tl-update-tlpdb b/Master/tlpkg/bin/tl-update-tlpdb index c1a1b467083..0dd845d416b 100755 --- a/Master/tlpkg/bin/tl-update-tlpdb +++ b/Master/tlpkg/bin/tl-update-tlpdb @@ -291,6 +291,8 @@ sub compare_and_fix_tlpdbs { # if requested, also may need to fix up packages with catalogue changs. if ($opt_catalogue_compare) { my %cat_fixup = tlpdb_catalogue_compare($newtlpdb, $opt_catalogue_compare); + info("$prg: packages with Catalogue changes: ", + join(" ", keys %cat_fixup), "\n") if (keys %cat_fixup); # hash slice to merge %cat_fixup into %packages_needing_fixup; # all the values are 1, so that doesn't matter. @packages_needing_fixup{ keys %cat_fixup } = values %cat_fixup; |