texlive[50189] Master/install-tl: (check_env): ignore anything
commits+karl at tug.org
commits+karl at tug.org
Sat Mar 2 00:27:15 CET 2019
Revision: 50189
http://tug.org/svn/texlive?view=revision&revision=50189
Author: karl
Date: 2019-03-02 00:27:15 +0100 (Sat, 02 Mar 2019)
Log Message:
-----------
(check_env): ignore anything beginning with _,
notably __CF_USER_TEXT_ENCODING (Mojca mail 1 Mar
2019 08:08:46).
Modified Paths:
--------------
trunk/Master/install-tl
Modified: trunk/Master/install-tl
===================================================================
--- trunk/Master/install-tl 2019-03-01 22:26:09 UTC (rev 50188)
+++ trunk/Master/install-tl 2019-03-01 23:27:15 UTC (rev 50189)
@@ -2503,12 +2503,14 @@
# check for tex-related envvars.
$::env_warns = "";
for my $evar (sort keys %origenv) {
- next if $evar =~ /^(_
+ next if $evar =~ /^(_.*
|.*PWD
- |GENDOCS_TEMPLATE_DIR|PATH|SHELLOPTS
+ |ARGS
+ |GENDOCS_TEMPLATE_DIR
+ |INSTROOT
+ |PATH
|PERL5LIB
- |INSTROOT
- |ARGS
+ |SHELLOPTS
)$/x; # don't worry about these
if ("$evar $origenv{$evar}" =~ /tex/i) { # check both key and value
$::env_warns .= " $evar=$origenv{$evar}\n";
@@ -2703,6 +2705,11 @@
The wizard mode user interface (default on Windows), asking only minimal
questions before installing all of TeX Live.
+=item C<expert>
+
+A generic name for, currently, C<perltk>; it may select a different GUI
+in the future.
+
=item C<perltk>
The expert GUI installer, providing access to more options.
@@ -2711,7 +2718,7 @@
=item C<tcl>
An experimental GUI. It starts out simply, with the same options as
-the wizard installer, but a button 'Advanced' gives acces to almost
+the wizard installer, but a button 'Advanced' gives access to almost
all the options of the perltk GUI.
=back
More information about the tex-live-commits
mailing list