diff options
author | Norbert Preining <preining@logic.at> | 2009-07-09 11:39:06 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-07-09 11:39:06 +0000 |
commit | ab471595e495323c12b4fcf31856f62269405a83 (patch) | |
tree | 4cba4dccc48f4535201066bf18c6458726d92ec7 /Master/install-tl | |
parent | 58b5e933d6749fd1a1c9bd27d8855a786a44b20e (diff) |
allow option -all-options to show all options in text and
perltk mode, even those that are not really applicable
use that option to actually show stuff in menu-text and menu-perltk
show explanation strings for file assoc settings instead of number
git-svn-id: svn://tug.org/texlive/trunk@14198 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Master/install-tl b/Master/install-tl index cb6bb4752de..7dadd4b68c1 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -160,12 +160,21 @@ my $opt_custom_bin; my $opt_version = 0; my $opt_force_arch; +# show all options even those not relevant for that arch +$::opt_all_options = 0; + # default language for GUI installer $::lang = "en"; # use the fancy directory selector for TEXDIR $::alternative_selector = 0; +# +# some strings to describe the different meanings of option_file_assoc +$::fileassocdesc[0] = "None"; +$::fileassocdesc[1] = "Only new"; +$::fileassocdesc[2] = "All"; + # if we find a file installation.profile we ask the user whether we should # continue with the installation # note, we are in the installer directory. @@ -198,6 +207,7 @@ GetOptions( "profile-seed=s" => \$opt_profileseed, "profile=s" => \$opt_profile, "scheme=s" => \$opt_scheme, + "all-options" => \$::opt_all_options, "version" => \$opt_version, "help|?" => \$opt_help) or pod2usage(1); @@ -1760,6 +1770,12 @@ a new menu (for debugging purposes). For Windows only: configure for the current user, not for all users. +=item B<-all-options> + +Normally options not regarding the current architecture are not shown. +Giving this cmd line option allows to configure settings in the +final tlpdb that do not have any immediate effect. + =item B<-portable> Start the installer for portable use---but use the C<tl-portable> |