diff options
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/check-fmttriggers | 8 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 2 |
2 files changed, 5 insertions, 5 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; } diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index f0f854ef7d8..9d996fd011e 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -77,7 +77,7 @@ MAKEINST () echo "-- `date` writing iso to $iso" # remove old images, checksums, signatures, versioned and generic. - rm -f $iso* $prefix.iso* + rm -f $iso* $prefix*.iso* # the image consists of the tlnet tree and the top-level files # from master, more or less. |