diff options
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> |