diff options
author | Karl Berry <karl@freefriends.org> | 2013-08-04 23:39:28 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-08-04 23:39:28 +0000 |
commit | d477dba81b57eae2f25a8401ac04bcacf0d0924d (patch) | |
tree | f398f1fa1ef6e70431a4e05b2e96ea1c326c65da /Master/tlpkg | |
parent | 45685e2c30714eae1fb1e722a26ca3d24b2f679e (diff) |
do not check errata files that are out of sync in one
way or another.
git-svn-id: svn://tug.org/texlive/trunk@31347 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 12 |
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"; |