diff options
Diffstat (limited to 'Master/tlpkg/bin/tlpkg-ctan-check')
-rwxr-xr-x | Master/tlpkg/bin/tlpkg-ctan-check | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Master/tlpkg/bin/tlpkg-ctan-check b/Master/tlpkg/bin/tlpkg-ctan-check index e460c3ff43c..7936e38f20e 100755 --- a/Master/tlpkg/bin/tlpkg-ctan-check +++ b/Master/tlpkg/bin/tlpkg-ctan-check @@ -191,7 +191,7 @@ my @TLP_working = qw( gfsporson gfssolomos ghab gillcm gincltex ginpenc gitinfo gloss glossaries gmdoc gmdoc-enhance gmeometric - gmiflink gmp gmutils gmverb gmverse gnu-freefont gnuplottex gost + gmiflink gmp gmutils gmverb gmverse gnuplottex gost gradientframe grafcet graphics graphics-pln graphicx-psmin greek-inputenc greekdates greenpoint grfpaste grid gridset grverb gtrcrd gu guitar guitlogo @@ -491,6 +491,7 @@ my @TLP_no_check = ( "fontname", # tl-update-auto "fontware", # binary "garuda-c90", # part of cjk + "gnu-freefont", # no files to compare, distributed as tarballs "groff", # binary "gsftopk", # binary "ifluatex", # part of oberdiek @@ -641,6 +642,9 @@ sub do_tlp { # 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/,; + my $tl_file = "$Master/$file"; if (! -e $tl_file) { warn "$tl_file: TL file missing\n"; |