diff options
Diffstat (limited to 'Master/tlpkg/installer')
-rwxr-xr-x | Master/tlpkg/installer/install-menu-text.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/installer/install-menu-text.pl b/Master/tlpkg/installer/install-menu-text.pl index bc7ff0911b2..33c5881b142 100755 --- a/Master/tlpkg/installer/install-menu-text.pl +++ b/Master/tlpkg/installer/install-menu-text.pl @@ -113,9 +113,9 @@ sub run_menu_text { # but the -old-installation-found while (@args) { my $f = shift @args; - if ($f eq "-old-installation-found") { - print "\nAn old installation of TeX Live has been found in ", - $previoustlpdb->root, "\n"; + if ($f =~ m/^-old-installation-found=(.*)$/) { + my $dn = $1; + print "\nAn old installation of TeX Live has been found in $dn\n"; print " If you want the selection of collections and various options being taken over press `y', otherwise anything else. @@ -123,7 +123,7 @@ over press `y', otherwise anything else. Import settings from previous TeX Live installation: (y/n): "; chomp(my $yn = <STDIN>); if ($yn =~ m/^y$/i) { - import_settings_from_old_tlpdb(); + import_settings_from_old_tlpdb($dn); } } } |