diff options
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/check-tlnet-consistency | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Master/tlpkg/bin/check-tlnet-consistency b/Master/tlpkg/bin/check-tlnet-consistency index 81e5481859c..045253382d7 100755 --- a/Master/tlpkg/bin/check-tlnet-consistency +++ b/Master/tlpkg/bin/check-tlnet-consistency @@ -191,17 +191,18 @@ sub main } } if (@sizeerror) { - print "packages with wront container size/md5s:\n"; + print "packages with wrong container size/md5s:\n"; for my $p (@sizeerror) { print "$p\n"; } } - for my $pkg (keys %filedifferrors) { - print "file differences in $pkg:\n"; - for my $l (@{$filedifferrors{$pkg}}) { - print " $l\n"; - } - } +# xx every RELOC change shows up. don't understand. +# for my $pkg (keys %filedifferrors) { +# print "file differences in $pkg:\n"; +# for my $l (@{$filedifferrors{$pkg}}) { +# print " $l\n"; +# } +# } } |