diff options
author | Karl Berry <karl@freefriends.org> | 2019-08-01 22:51:44 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-08-01 22:51:44 +0000 |
commit | 6a6607b8836a9c7f6015a3425e8f9ad35eacb548 (patch) | |
tree | d1b1e539c251d69c0e22964ce5024d7bf409f90a /Master/tlpkg/bin | |
parent | 6f8000c983c96b1457bf95de6e81a032dcdd11de (diff) |
do not worry about dup LICENSE files in runtime; note that we do not check-files-by-format any more
git-svn-id: svn://tug.org/texlive/trunk@51800 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/check-files-by-format | 14 |
1 files changed, 7 insertions, 7 deletions
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); } |