diff options
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 8afef78ce5b..d7c6039c8c3 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -48,13 +48,15 @@ $ReleaseYear = 2009; # Meta Categories do not ship files, but call only for other packages our @MetaCategories = qw/Collection Scheme/; our $MetaCategoriesRegexp = '(Collection|Scheme)'; +# # Normal Categories contain actial files and do not depend on other things. -our @NormalCategories = qw/Package TLCore Documentation ConTeXt/; - +our @NormalCategories = qw/Package TLCore ConTeXt/; +# # list of all Categories our @Categories = (@MetaCategories, @NormalCategories); -our $CategoriesRegexp = '(Collection|Scheme|Package|TLCore|Documentation|ConTeXt)'; +# repeat, as a regexp. +our $CategoriesRegexp = '(Collection|Scheme|Package|TLCore|ConTeXt)'; our $DefaultCategory = "Package"; @@ -205,7 +207,7 @@ C<Collection> and <Scheme>. =item C<@TeXLive::TLConfig::NormalCategories> The list of normal categories, i.e., those categories whose packages do -ship files. Currently C<TLCore>, C<Documentation>, C<Package>. +ship files. Currently C<TLCore>, C<Package>, C<ConTeXt>. =item C<@TeXLive::TLConfig::Categories> |