summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check12
1 files changed, 8 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index b1801f4866e..677cf3244e6 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -748,10 +748,14 @@ sub do_tlp {
# all we have to compare.
next if $file =~ /\.pdf$/ && $file !~ /short|mathdesign/;
- # tlc2.err in TL is stale right now. I don't understand,
- # but anyway, not worth updating the package just for this.
- # Get right at the next latex update. --karl, 27aug12.
- next if $file eq "tlc2.err";
+ # tlc2.err on CTAN and lb2.err in TL are stale. I don't understand,
+ # but anyway, not worth updating the package just for this. Get
+ # right at the next latex update. --karl, 27aug12.
+ next if $file =~ m,/(lb2|tlc2).err$,;
+
+ # knuth.tds.zip (from latex-tds) is wrong wrt to the actual
+ # originals, which we installed by hand. Don't check them until fixes.
+ next if $file =~ m,/(mf84.bug|tex82.bug|errorlog.tex)$,;
# Lowercase readme wrongly matched against uppercase README in musixtex.
next if $basefile eq "readme";