diff options
author | Karl Berry <karl@freefriends.org> | 2013-05-10 17:49:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-05-10 17:49:37 +0000 |
commit | c57f4ad104711b6374cc0c4d41bc044519e04a91 (patch) | |
tree | 5783c30effa127132852028fa5761349ccbb2ff3 /Master/install-tl | |
parent | 650b657b19832c68d26e14726af630f1bc52b0f5 (diff) |
merge collection-documentation-* into collection-lang*
git-svn-id: svn://tug.org/texlive/trunk@30372 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Master/install-tl b/Master/install-tl index d4d466d2246..c0cdebaaafa 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -115,7 +115,7 @@ my $default_scheme='scheme-full'; # our for menus our @collections_std; our @collections_lang; -our @collections_lang_doc; + # The global variable %vars is an associative list which contains all # variables and their values which can be changed by the user. # needs to be our since TeXLive::TLUtils uses it @@ -1432,12 +1432,8 @@ sub initialize_collections { ++$vars{'n_collections_available'}; if ($pkg=~/collection-lang/) { push @collections_lang, $pkg; - } elsif ($pkg=~/documentation/) { - if ($pkg=~/documentation-base/) { - push @collections_std, $pkg; - } else { - push @collections_lang_doc, $pkg; - } + } elsif ($pkg =~ /documentation/) { + push @collections_std, $pkg; } else { push @collections_std, $pkg; } |