summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/check-files-by-format
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-12-20 00:42:02 +0000
committerKarl Berry <karl@freefriends.org>2012-12-20 00:42:02 +0000
commit59eb59db0d33c5fb164ae4235c5a6fc4c8658725 (patch)
tree5badb464f07fe2355fd4191a2217e8085a74194b /Master/tlpkg/bin/check-files-by-format
parent1101a024b69c93fcaa6ccad896013394b1f806d5 (diff)
(check_pdf): exclude_pdf, not exclude_pfb.
git-svn-id: svn://tug.org/texlive/trunk@28584 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/check-files-by-format')
-rwxr-xr-xMaster/tlpkg/bin/check-files-by-format4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format
index d6791ca5b52..cd602cf3c62 100755
--- a/Master/tlpkg/bin/check-files-by-format
+++ b/Master/tlpkg/bin/check-files-by-format
@@ -38,7 +38,7 @@ my $exclude_pdf = {
# 15dec12 derekn says will be fixed in next xpdf after 3.03:
# (causes seg fault now):
'texmf-dist/doc/latex/ocgx/demo-ocgx.pdf' => -1,
- 'texmf/dvips/tetex/config.pdf' => 2, # not a PDF file
+ 'texmf/dvips/tetex/config.pdf' => -1, # not a PDF file
};
# the value has no meaning here
@@ -247,7 +247,7 @@ sub exclude_value {
# check a pdf file
sub check_pdf {
my ($file) = @_;
- my $excl_val = exclude_value($exclude_pfb, $file) || 0;
+ my $excl_val = exclude_value($exclude_pdf, $file) || 0;
return if $excl_val < 0;
#
my $errfile = "$tmpdir/pdferr";