diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2021-04-11 14:25:47 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2021-04-11 14:25:47 +0000 |
commit | 9e27f4981136c8ae10d8bac4221e1de1aaf667e3 (patch) | |
tree | cf52432f69f9b0534e02c613fbba2db47835c271 /Master | |
parent | 61598623622201376d2e1cfbe79303889359281d (diff) |
Do not start a GUI for either print-arch or print-platform
git-svn-id: svn://tug.org/texlive/trunk@58829 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 2 | ||||
-rwxr-xr-x | Master/install-tl-windows.bat | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index be073cb1192..e9b0dda8fc8 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -109,7 +109,7 @@ if (($^O !~ /^MSWin/i) && } } } else { - for my $q (qw/in-place profile help print-platform version no-gui/) { + for my $q (qw/in-place profile help print-arch print-platform version no-gui/) { if ($p eq "-$q") { # ignore gui mode $want_tcl = 0; diff --git a/Master/install-tl-windows.bat b/Master/install-tl-windows.bat index 640c7396c24..a20901003b0 100755 --- a/Master/install-tl-windows.bat +++ b/Master/install-tl-windows.bat @@ -113,6 +113,10 @@ if -print-platform == %p% ( set tcl=no
set forbid=yes
)
+if -print-arch == %p% (
+set tcl=no
+set forbid=yes
+)
if -version == %p% (
set tcl=no
set forbid=yes
|