summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
authorSiep Kroonenberg <siepo@cybercomm.nl>2018-09-01 20:43:37 +0000
committerSiep Kroonenberg <siepo@cybercomm.nl>2018-09-01 20:43:37 +0000
commit4a2f96d8d387cc9311743a067e2c4f80b1b55a78 (patch)
treeb7d28f99551b5554c08d79bd38ab2423ad899801 /Master/install-tl
parent7e8b9ac66a032a70bd18c76d8446d698b58e9a4b (diff)
Localization tcl installer; wrapper scripts
git-svn-id: svn://tug.org/texlive/trunk@48532 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-xMaster/install-tl8
1 files changed, 6 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl
index ccf3cc7a092..7657e1e8dad 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -202,6 +202,7 @@ $::opt_all_options = 0;
$::lang = "en";
# use the fancy directory selector for TEXDIR
+# no longer used, although we still accept the parameter
$::alternative_selector = 0;
# do not debug translations by default
@@ -276,6 +277,7 @@ GetOptions(
"profile=s" => \$opt_profile,
"scheme=s" => \$opt_scheme,
"select-repository" => \$::opt_select_repository,
+ "tcl", # handled by wrapper
"verify-downloads!" => \$opt_verify_downloads,
"version" => \$opt_version,
"warn-checksums!" => \$opt_warn_checksums,
@@ -639,7 +641,7 @@ if ($opt_gui eq 'text' or $opt_gui eq 'extl' or $opt_profile ne "" or
foreach my $t (@::WARNLINES) { print STDERR $t; }
}
if ($::env_warns) { tlwarn($::env_warns); }
- unless ($ENV{"TEXLIVE_INSTALL_NO_WELCOME"}) {
+ unless ($ENV{"TEXLIVE_INSTALL_NO_WELCOME"} or $opt_gui eq 'extl') {
info(join("\n", @::welcome_arr));
}
do_cleanup(); # sets $::LOGFILENAME if not already defined
@@ -651,6 +653,8 @@ if ($opt_gui eq 'text' or $opt_gui eq 'extl' or $opt_profile ne "" or
print STDERR
"Cannot create logfile $vars{'TEXDIR'}/install-tl.log: $!\n";
}
+ printf STDOUT "Installed on platform %s at %s\n",
+ $vars{'this_platform'}, $vars{'TEXDIR'} if ($opt_gui eq 'extl');
} else {
require("installer/tracked-install.pl");
$status = installer_tracker();
@@ -934,7 +938,7 @@ sub do_installation {
# log, profile, temp files:
# do_cleanup();
- create_welcome();
+ # create_welcome(); already invoked in main program
if (@::WARNLINES) {
unshift @::WARNLINES, ("\nSummary of warnings:\n");
}