diff options
author | Karl Berry <karl@freefriends.org> | 2021-02-14 23:15:33 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-02-14 23:15:33 +0000 |
commit | 8b7cbe79b80313a111aa945dca8066b9ed6ac518 (patch) | |
tree | 7b161fed14a0091959f2758f8ee22024e0441a96 /Master | |
parent | 8760e50243e70dab45d117689d869a7d93e9d696 (diff) |
(compare_pkgs_and_triggers): ignore more packages
(tex-ini-files, latex, atbegshi, atveryend,
everyshi) which are intentionally triggers in
tlpdb even though not actually used in all formats.
git-svn-id: svn://tug.org/texlive/trunk@57744 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/tl-check-fmttriggers | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tl-check-fmttriggers b/Master/tlpkg/bin/tl-check-fmttriggers index 6cf998dc6cc..31868bfcd24 100755 --- a/Master/tlpkg/bin/tl-check-fmttriggers +++ b/Master/tlpkg/bin/tl-check-fmttriggers @@ -324,6 +324,15 @@ sub compare_pkgs_and_triggers { # 00texlive.autopatterns.tlpsrc. delete $tlpdb_pkgs{"l3backend"}; + # These packages are also included as fmttriggers eventhough they + # are not necessary, to simplify maintenance of the package lists. + delete $tlpdb_pkgs{"atbegshi"}; + delete $tlpdb_pkgs{"atveryend"}; + delete $tlpdb_pkgs{"everyshi"}; + delete $tlpdb_pkgs{"latex"}; + delete $tlpdb_pkgs{"tex-ini-files"}; + delete $tlpdb_pkgs{"unicode-data"}; + my @recorded_only = (); for my $r (keys %recorded_pkgs) { # no need for a package to include itself as a fmttrigger. |