summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/install-tl
diff options
context:
space:
mode:
Diffstat (limited to 'systems/texlive/tlnet/install-tl')
-rwxr-xr-xsystems/texlive/tlnet/install-tl14
1 files changed, 5 insertions, 9 deletions
diff --git a/systems/texlive/tlnet/install-tl b/systems/texlive/tlnet/install-tl
index e1e1bb11a8..03ea4bf4c5 100755
--- a/systems/texlive/tlnet/install-tl
+++ b/systems/texlive/tlnet/install-tl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $Id: install-tl 62745 2022-03-16 22:20:47Z karl $
+# $Id: install-tl 63001 2022-04-11 14:03:28Z siepo $
# Copyright 2007-2022
# Reinhard Kotucha, Norbert Preining, Karl Berry, Siep Kroonenberg.
# This file is licensed under the GNU General Public License version 2
@@ -10,7 +10,7 @@
use strict; use warnings;
-my $svnrev = '$Revision: 62745 $';
+my $svnrev = '$Revision: 63001 $';
$svnrev =~ m/: ([0-9]+) /;
$::installerrevision = ($1 ? $1 : 'unknown');
@@ -58,9 +58,7 @@ sub dblogsub {
if (($^O !~ /^MSWin/i) &&
# this wrapper is only for unix, since windows has its own wrapper
- ($#ARGV >= 0 || ($^O eq 'darwin')) &&
- # tcl parameter may still come, or tcl is default
- ($#ARGV < 0 || $ARGV[0] ne '-from_ext_gui')
+ ($#ARGV >= 0) && ($ARGV[0] ne '-from_ext_gui')
# this run is not invoked by tcl
) {
@@ -81,7 +79,7 @@ if (($^O !~ /^MSWin/i) &&
# build argument array @new_args for install-tl-gui.tcl.
# '-gui' or '-gui tcl' will not be copied to @new_args.
# quit scanning and building @new_args once tcl is ruled out.
- my $want_tcl = ($^O eq 'darwin');
+ my $want_tcl = 0;
my $asked4tcl = 0;
my $forbid = 0;
my @new_args = ();
@@ -127,8 +125,6 @@ if (($^O !~ /^MSWin/i) &&
}
# done scanning arguments
if ($want_tcl) {
- # Darwin: suppress deprecation warning
- $ENV{'TK_SILENCE_DEPRECATION'} = 1 if $^O eq 'darwin';
unshift (@new_args, "--");
unshift (@new_args, "$::installerdir/tlpkg/installer/install-tl-gui.tcl");
my @wishes = qw /wish wish8.7 wish8.6 wish8.5 tclkit/;
@@ -3205,7 +3201,7 @@ This script and its documentation were written for the TeX Live
distribution (L<https://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
-$Id: install-tl 62745 2022-03-16 22:20:47Z karl $
+$Id: install-tl 63001 2022-04-11 14:03:28Z siepo $
=cut
# to remake HTML version: pod2html --cachedir=/tmp install-tl >/tmp/itl.html