diff options
author | Karl Berry <karl@freefriends.org> | 2009-11-16 23:47:48 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-11-16 23:47:48 +0000 |
commit | e760c8fe19ab83e31283c22acc3b73be20a3d1f3 (patch) | |
tree | 8df37bb488adfd68b0ddf367837ebb2742bb57d7 /Master/texmf | |
parent | 8756d215090713bf024f0b6f29af03510c1eba59 (diff) |
ignore czech.slovak.sty (zdenek mail 16 Nov 2009
08:34:41), also *.cfg and language.date.
git-svn-id: svn://tug.org/texlive/trunk@16039 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index e21052b5736..2df72ffcbb2 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -3370,9 +3370,10 @@ sub check_runfiles { # check if duplicates are different files # foreach my $f (@duplicates) { - # assume tex4ht stuff is ok, and don't worry about Changes/README for now - # same for .xdy files - next if ($f =~ /(^Changes$|^README$|\.htf$|\.4hf$|\.xdy$)/); + # assume tex4ht, xdy stuff is ok, and don't worry about + # Changes/README et al. + next if $f =~ /\.(cfg|htf|4hf|xdy)$/; + next if $f =~ /^(Changes|README|language\.dat|(czech|slovak)\.sty)$/; # my @copies = grep (/\/$f$/, @runtime_files); # map files can be duplicated as long as copies don't concern the same engine |