diff options
author | Karl Berry <karl@freefriends.org> | 2012-05-14 22:57:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2012-05-14 22:57:26 +0000 |
commit | c891e363f2884b517fdd6952ce26c9943ccee45c (patch) | |
tree | df5bebdd7bfbf7962a3c52a74b5a854d4d710f38 /Master/tlpkg/bin/check-files-by-format | |
parent | 11fcd0156d86cb630e34533d678e0bcd7504f32c (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/tlpkg/bin/check-files-by-format')
-rwxr-xr-x | Master/tlpkg/bin/check-files-by-format | 4 |
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; } |