summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/check-files-by-format
diff options
context:
space:
mode:
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";