summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tlpkg-ctan-check
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin/tlpkg-ctan-check')
-rwxr-xr-xMaster/tlpkg/bin/tlpkg-ctan-check19
1 files changed, 11 insertions, 8 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check
index 9c012babe5b..bd60f385424 100755
--- a/Master/tlpkg/bin/tlpkg-ctan-check
+++ b/Master/tlpkg/bin/tlpkg-ctan-check
@@ -814,24 +814,27 @@ sub do_tlp {
# all we have to compare.
next if $file =~ /\.pdf$/ && $file !~ /short|mathdesign/;
- # 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)$,;
+ # cmfraknum.mf was corrected on CTAN to remove a bogus trailing
+ # CTRL-Z from Yannis's original DOS development. But then
+ # cmfrak.tfm cannot be regenerated because the source inputs
+ # cmfrabase.mf but the file is named cmfrabas.mf, from the same
+ # era. So sigh. The font is not changing so let's just ignore the
+ # differing file instead of going to the trouble of regenerating it.
+ next if $basefile eq "cmfraknum.mf";
+
+ # We install our own stub, not ConTeXt's. I guess.
+ next if $basefile eq "mptopdf.exe";
+
# Lowercase readme wrongly matched against uppercase README in musixtex.
next if $basefile eq "readme";
# Wrong README gets compared.
next if $basefile eq "README" && $file =~ m,/(pmx|cs)/,;
- # We install our own stub, not ConTeXt's. I guess.
- next if $basefile eq "mptopdf.exe";
-
my $tl_file = "$Master/$file";
if (! -e $tl_file) {
warn "$tl_file: TL file missing\n";