diff options
author | Karl Berry <karl@freefriends.org> | 2011-06-05 23:21:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-06-05 23:21:10 +0000 |
commit | 912dc1fca4adfdd4337b256729a196debbd1078a (patch) | |
tree | deef9a8f75793e0d9fd3c48d01b1597d915c56ed | |
parent | c20bfa1e1f4c37382d24f76c124561797025ce57 (diff) |
(check_runfiles): do not worry about different sample.bib's.
git-svn-id: svn://tug.org/texlive/trunk@22804 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index 19daa0447cc..606f0acbc4d 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -3941,11 +3941,26 @@ sub check_runfiles { # assume tex4ht, xdy, afm stuff is ok, and don't worry about # Changes, README et al. Other per-format versions. next if $f =~ /\.(afm|cfg|4hf|htf|xdy)$/; - next if $f =~ /^(Changes|README|language\.dat|(czech|slovak)\.sty)$/; - next if $f =~ /^(libertine\.sty|m-tex4ht\.tex|metatex\.tex)$/; - next if $f =~ /^(kinsoku\.tex|luatools\.lua|cid2code\.txt|etex\.src)$/; - next if $f =~ /^(ps2mfbas\.mf|pstricks\.con|tex4ht\.env)$/; - next if $f =~ /^(texutil\.rb|tlmgrgui\.pl|language\.def)$/; + next if $f + =~ /^((czech|slovak)\.sty + |Changes + |README + |cid2code\.txt + |etex\.src + |kinsoku\.tex + |language\.dat + |language\.def + |libertine\.sty + |luatools\.lua + |m-tex4ht\.tex + |metatex\.tex + |ps2mfbas\.mf + |pstricks\.con + |sample\.bib + |tex4ht\.env + |texutil\.rb + |tlmgrgui\.pl + )$/x; # my @copies = grep (/\/$f$/, @runtime_files); # map files can be duplicated between (but not within) formats. |