diff options
author | Norbert Preining <preining@logic.at> | 2009-07-04 23:55:54 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-07-04 23:55:54 +0000 |
commit | 657ba4f783aa9b76181bda011b4eef594e7193fa (patch) | |
tree | 826b438dd38024694c83e3a181453051c8b9be82 /Master/texmf/scripts | |
parent | edf68f46af4f75706f059700dbfeec4c18538ddd (diff) |
ignore koma-script pseudo-runfiles in source and doc in check runfiles
git-svn-id: svn://tug.org/texlive/trunk@14102 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index b02e537939d..913471dff55 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -2582,6 +2582,11 @@ sub check_runfiles { my $tlp = $localtlpdb->get_package($tlpn); my @files = $tlp->runfiles; if ($tlp->relocated) { for (@files) { s!^$TeXLive::TLConfig::RelocPrefix/!$TeXLive::TLConfig::RelocTree/!; } } + # special case for koma-script where doc/src files are in runfiles section + if ($tlpn eq "koma-script") { + @files = grep {!m;^texmf-dist/source/latex/koma-script/;} @files; + @files = grep {!m;^texmf-dist/doc/latex/koma-script/;} @files; + } push @runtime_files, @files; } |