diff options
Diffstat (limited to 'Master/install-tl')
-rwxr-xr-x | Master/install-tl | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Master/install-tl b/Master/install-tl index 0f13474b3b8..22a9bed3482 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -540,6 +540,11 @@ sub do_installation { } $localtlpdb->save unless $vars{'from_dvd'}; do_postinst_stuff(); + if (win32()) { + print welcome(); + } else { + print welcome_paths(); + } } # do_postinst_stuff has to fix up the texmf tree and install some missing @@ -992,13 +997,13 @@ sub calc_depends { } # if programs for arch=win32 are installed we also have to install - # bin-tlperl.win32 which provides the "hidden" perl that will be used + # tlperl.win32 which provides the "hidden" perl that will be used # to run all the perl scripts. - # Furthermore we install bin-tlgs.win32 and bin-tlpsv.win32, too + # Furthermore we install tlgs.win32 and tlpsv.win32, too if (grep(/^win32$/,@archs)) { - $install{"bin-tlperl.win32"} = 1; - $install{"bin-tlgs.win32"} = 1; - $install{"bin-tlpsv.win32"} = 1; + $install{"tlperl.win32"} = 1; + $install{"tlgs.win32"} = 1; + $install{"tlpsv.win32"} = 1; } # loop over all the packages until it is getting stable |