diff options
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 1 | ||||
-rwxr-xr-x | Master/tlpkg/bin/check-files-by-format | 14 |
2 files changed, 8 insertions, 7 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index ca38c68abf8..8b626023c91 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -5500,6 +5500,7 @@ sub check_runfiles { next if $f =~ /^((czech|slovak)\.sty |Changes + |LICENSE.* |Makefile |README.* |a_.*\.enc diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format index 8e788b3027b..bb4e48c6ee3 100755 --- a/Master/tlpkg/bin/check-files-by-format +++ b/Master/tlpkg/bin/check-files-by-format @@ -1,12 +1,13 @@ #!/usr/bin/env perl # $Id$ # Copyright Manuel P\'egouri\'e-Gonnard, 2010-2016. WTFPL v2. -# # Check that files in various formats are somewhat valid. # -# The following formats are checked currently: pdf, tfm, vf, otf. -# We no longer check pfb, since so many Type 1's now end up with: -# OtherBlues zone 0 too large in relation to BlueScale +# This used to be run from cron, but no longer is, because it takes many +# hours, and there are too many false positives. Inserting all the +# exclusions got too annoying. Give up. --karl, 2aug19. +# +# The following formats are checked currently: pfb, pdf, tfm, vf, otf. # # For each format, there is one routine &check_<format> and an exclusion # 'list' (hash reference) $exclude_<format>: the keys are either a @@ -248,9 +249,8 @@ sub main { for my $file (grep { /\.pdf$/ } @files) { check_pdf($file); } - # see comments at top. - #for my $file (grep { /\.pfb$/ } @files) { - # check_pfb($file); } + for my $file (grep { /\.pfb$/ } @files) { + check_pfb($file); } for my $file (grep { /\.tfm$/ } @files) { check_tfm($file); } |