diff options
author | Norbert Preining <preining@logic.at> | 2008-12-15 21:51:56 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-12-15 21:51:56 +0000 |
commit | 1180f6c2294597692c037c8dc7aa584409b478ad (patch) | |
tree | 23308ee82c808efd59fcb8fce6d6ae6dea7a7990 | |
parent | 893927e9315814b62821b1872dfff045a8f18ab5 (diff) |
add a list of allowed config options to TLConfig.pm
git-svn-id: svn://tug.org/texlive/trunk@11622 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index ee5a903f12d..1f6de4f500e 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -27,6 +27,7 @@ BEGIN { $TeXLiveURL $WinSpecialUpdatePackagesRegexp @CriticalPackagesList + @AllowedConfigOptions ); @EXPORT = @EXPORT_OK; } @@ -65,6 +66,21 @@ our $WinSpecialUpdatePackagesRegexp = our @CriticalPackagesList = qw/texlive.infra bin-texlive/; +our @AllowedConfigOptions = qw/ + available_architectures + opt_create_symlinks + opt_create_formats + opt_paper + opt_sys_bin + opt_sys_info + opt_sys_man + opt_install_docfiles + opt_install_srcfiles + platform + location + backupdir + autobackup + /; 1; @@ -145,6 +161,10 @@ because they contain files which are open during the update process. A list of all those packages which we do not update regularly since they are too central, currently bin-texlive and texlive.infra. +=item C<@TeXLive::TLConfig::AllowedConfigOptions> + +A list of a config options that can be set in 00texlive-installation.config. + =back =head1 SEE ALSO |