diff options
author | Karl Berry <karl@freefriends.org> | 2021-02-02 23:46:14 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-02-02 23:46:14 +0000 |
commit | eb18e1150b0e441b44a04d88ea543e643d03bbf6 (patch) | |
tree | 8c57070a77151b571c00ce1b6b2cd6c20b5db170 /Master | |
parent | afb7e3ea263187a5245b6c5b98b1dec025c5f430 (diff) |
wish works on macs again, reenable gui default
git-svn-id: svn://tug.org/texlive/trunk@57604 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index 0ee77018859..17e45e969e8 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -51,7 +51,7 @@ sub dblog { if (($^O !~ /^MSWin/i) && # this wrapper is only for unix, since windows has its own wrapper - ($#ARGV >= 0 || ($^O eq 'xdarwin')) && + ($#ARGV >= 0 || ($^O eq 'darwin')) && # tcl parameter may still come, or tcl is default ($#ARGV < 0 || $ARGV[0] ne '-from_ext_gui') # this run is not invoked by tcl @@ -74,7 +74,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 'xdarwin'); + my $want_tcl = ($^O eq 'darwin'); my $asked4tcl = 0; my $forbid = 0; my @new_args = (); |