diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index df3f9902b21..9a6774917ba 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -982,10 +982,10 @@ sub do_tlp { # all we have to compare. next if $file =~ /\.pdf$/ && $file !~ /short|mathdesign/; - # 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)$,; - + # seems mathpazo files were updated in TL and not CTAN. + # Too old to worry about. + next if $basefile =~ m,(pazofnst.tex|Makefile)$, && $file =~ m,/mathpazo/,; + # We install our own stub, not ConTeXt's. I guess. next if $basefile eq "mptopdf.exe"; |