diff options
author | Karl Berry <karl@freefriends.org> | 2019-05-24 21:47:41 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-05-24 21:47:41 +0000 |
commit | 676d0c444418989d8c0c8d1c60ed3d52f9290c80 (patch) | |
tree | 620ce7febffd18cd99f5ae080a3453d4cd991b7a | |
parent | d23177eea33a9ae641c7cbab5c118c599c237fa6 (diff) |
(check_runfiles): exclude a_*.enc from checks,
since otftotfm will generate the same hash for
.enc's that differ only in comments; just happened
for source{code,sans}pro/a_j24bgz.enc and a_n5gv3r.enc.
git-svn-id: svn://tug.org/texlive/trunk@51217 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 4b4d1dbf715..176729195a3 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -5493,13 +5493,14 @@ sub check_runfiles { # check if duplicates are different files. foreach my $f (@duplicates) { # assume tex4ht, xdy, afm stuff is ok, and don't worry about - # Changes, README et al. Other per-format versions. + # Changes, README et al. Other per-format versions, etc. next if $f =~ /\.(afm|cfg|dll|exe|4hf|htf|pm|xdy)$/; next if $f =~ /^((czech|slovak)\.sty |Changes |Makefile |README.* + |a_.*\.enc |cid2code\.txt |etex\.src |fithesis.* @@ -5519,6 +5520,10 @@ sub check_runfiles { |texutil\.rb |tlmgrgui\.pl )$/x; + # For the a_.* line above: source*pro has .enc files which differ + # only in comments, hence the otftotfm-hashed name is the same. + # Seems like it could happen more or at random with other fonts too. + # Just have to accept ... # my @copies = grep (/\/$f$/, @runtime_files); # map files can be duplicated between (but not within) formats. |