diff options
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index c11a5300c7c..a8fe488b6dd 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -354,9 +354,10 @@ if ($opt_profile eq "") { eval { require Tk; }; if ($@) { # that didn't work out, so warn the user and continue with text mode - tlwarn("Cannot load Tk, maybe something is missing!\n"); + tlwarn("Cannot load Tk, maybe something is missing and\n"); + tlwarn("maybe http://tug.org/texlive/distro.html#perltk can help.\n"); tlwarn("Error message from loading Tk:\n"); - tlwarn("$@\n"); + tlwarn(" $@\n"); tlwarn("Continuing in text mode...\n"); $opt_gui = 0; } |