summaryrefslogtreecommitdiff
path: root/Master/install-tl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-xMaster/install-tl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 89933f3f6a3..dd94bc0722e 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -2023,7 +2023,6 @@ sub welcome_paths {
$welcome =~ s/\n Welcome to TeX Live!\n//;
$welcome .= <<"EOF";
-
Add $::vars{'TEXDIR'}/texmf-dist/doc/info to INFOPATH.
Add $::vars{'TEXDIR'}/texmf-dist/doc/man to MANPATH
(if not dynamically found).
@@ -2081,9 +2080,10 @@ sub warnings_summary {
return '' unless @::WARNLINES;
my $summary = <<EOF;
- Summary of warning messages during installation:
+Summary of warning messages during installation:
EOF
- $summary .= ' ' . join(' ', @::WARNLINES) . "\n";
+ $summary .= join ("", map { " $_" } @::WARNLINES); # indent each warning
+ $summary .= "\n"; # extra blank line
return $summary;
}