summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/check-fmttriggers
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin/check-fmttriggers')
-rwxr-xr-xMaster/tlpkg/bin/check-fmttriggers8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/check-fmttriggers b/Master/tlpkg/bin/check-fmttriggers
index f20711a0ecc..60cbca9d533 100755
--- a/Master/tlpkg/bin/check-fmttriggers
+++ b/Master/tlpkg/bin/check-fmttriggers
@@ -299,12 +299,12 @@ sub compare_pkgs_and_triggers {
}
if (keys %tlpdb_pkgs) {
tlwarn ("$prg: $ef triggers only in tlpdb: "
- . join (",", keys %tlpdb_pkgs) . "\n");
+ . join (",", sort keys %tlpdb_pkgs) . "\n");
$bad_p = 1;
}
if (@recorded_only) {
tlwarn ("$prg: $ef triggers only in recorder: "
- . join (",", @recorded_only) . "\n");
+ . join (",", sort @recorded_only) . "\n");
$bad_p = 1;
}
@@ -319,8 +319,8 @@ sub compare_pkgs_and_triggers {
}
for my $ef (sort keys %$fmttriggers) {
- my $trig = join (",", @{$fmttriggers->{$ef}});
- tlwarn ("$prg: fmttriggers in tlpdb only, not recorder: "
+ my $trig = join (",", sort @{$fmttriggers->{$ef}});
+ tlwarn ("$prg: format in tlpdb only: "
. "$ef ($trig)\n");
$bad_p = 1;
}