summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2012-05-14 22:57:26 +0000
committerKarl Berry <karl@freefriends.org>2012-05-14 22:57:26 +0000
commitc891e363f2884b517fdd6952ce26c9943ccee45c (patch)
treedf5bebdd7bfbf7962a3c52a74b5a854d4d710f38 /Master
parent11fcd0156d86cb630e34533d678e0bcd7504f32c (diff)
try to exclude all uptex and ptex files from checks.
git-svn-id: svn://tug.org/texlive/trunk@26379 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/tlpkg/bin/check-files-by-format4
1 files changed, 1 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format
index 0c60d9a42d0..9ac4fb1e29c 100755
--- a/Master/tlpkg/bin/check-files-by-format
+++ b/Master/tlpkg/bin/check-files-by-format
@@ -156,8 +156,6 @@ my $exclude_tfm = { '*base*' => 'texmf-dist/fonts/tfm',
'public/gfsbodoni/' => 1,
'public/malayalam/' => 1,
'public/japanese-otf/' => 1, # japanese tfm's
- 'public/japanese-otf-uptex/' => 1, # japanese tfm's
- 'uptex/jis/' => 1,
'public/wnri/' => 1,
'public/wsuipa/' => 1,
};
@@ -226,7 +224,7 @@ sub get_file_list {
}
# ptex font files are in their own formats; don't bother checking,
# or adding individual entries to the exclude lists.
- @files = grep ($_ !~ m!/ptex/!, @files);
+ @files = grep ($_ !~ m!/u?ptex/!, @files);
return @files;
}