summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2019-07-30 21:51:47 +0000
committerKarl Berry <karl@freefriends.org>2019-07-30 21:51:47 +0000
commit88ff5577928893a9afe078b4b7ab938f883b5d1f (patch)
tree8511fb63401a7a2b67fe241df44957e7939621c0 /Master
parent601938357c7edc659c7de6758480803a288ff2d5 (diff)
(main): don't check_pfb any more, useless
OtherBlues warning from t1lint too prevalent. git-svn-id: svn://tug.org/texlive/trunk@51783 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/tlpkg/bin/check-files-by-format11
1 files changed, 7 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format
index df51ba1d773..8e788b3027b 100755
--- a/Master/tlpkg/bin/check-files-by-format
+++ b/Master/tlpkg/bin/check-files-by-format
@@ -2,9 +2,11 @@
# $Id$
# Copyright Manuel P\'egouri\'e-Gonnard, 2010-2016. WTFPL v2.
#
-# Check that files in various formats are in good shape.
+# Check that files in various formats are somewhat valid.
#
-# The following formats are checked currently: pdf, pfb, tfm, vf, otf.
+# 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
#
# For each format, there is one routine &check_<format> and an exclusion
# 'list' (hash reference) $exclude_<format>: the keys are either a
@@ -246,8 +248,9 @@ sub main {
for my $file (grep { /\.pdf$/ } @files) {
check_pdf($file); }
- for my $file (grep { /\.pfb$/ } @files) {
- check_pfb($file); }
+ # see comments at top.
+ #for my $file (grep { /\.pfb$/ } @files) {
+ # check_pfb($file); }
for my $file (grep { /\.tfm$/ } @files) {
check_tfm($file); }