diff options
author | Karl Berry <karl@freefriends.org> | 2008-06-15 23:57:06 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-06-15 23:57:06 +0000 |
commit | 0f3a422c811b49168cf5a4c55f1aeb88cc648ea2 (patch) | |
tree | 7cb0f8eea60eb647d3efcec14d7becee3ef72168 /Master/install-tl | |
parent | c8f6037d99411606a58309f74fba8a93da0167af (diff) |
mention http://tug.org/texlive/distro.html#perltk
when Tk.pm fails to load.
git-svn-id: svn://tug.org/texlive/trunk@8764 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/install-tl')
-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; } |