summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2017-04-16 02:13:38 +0000
committerNorbert Preining <preining@logic.at>2017-04-16 02:13:38 +0000
commitf1bc728217cfe6abb4a9b2ed6d26202af0a9b01e (patch)
tree2162c45f75922002c5dc6ef9dc970c82dd67ef45 /Master/tlpkg/installer/install-menu-perltk.pl
parent4a0c4fb16d37da3fb452c9ea352af130944a68fa (diff)
option_path is only installer option, use instopt_path
git-svn-id: svn://tug.org/texlive/trunk@43827 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index 4bdf84bbc0a..d781fe5e9f6 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -132,7 +132,7 @@ sub setup_perltk_local_strings {
$fmtyesno = $::yesno[$vars{'option_create_formats'}];
$srcyesno = $::yesno[$vars{'option_install_srcfiles'}];
$deskintyesno = $::deskintdesc[$vars{'option_desktop_integration'}];
- $pathadjyesno = $::yesno[$vars{'option_path'}];
+ $pathadjyesno = $::yesno[$vars{'instopt_path'}];
$fileassocyesno = $::fileassocdesc[$vars{'option_file_assocs'}];
$editoryesno = $::yesno[$vars{'collection-texworks'}];
$adminallyesno = $::yesno[$vars{'option_w32_multi_user'}];
@@ -535,7 +535,7 @@ Please select a different mirror.',
$pathbutton = $fr->Button(
-text => __("Toggle"),
-command => sub {
- toggle_and_set_opt_variable(\$vars{'option_path'}, \$pathadjyesno); });
+ toggle_and_set_opt_variable(\$vars{'instopt_path'}, \$pathadjyesno); });
}
$pathbutton->grid(-row => $row, -column => 3, -sticky => "ew", -padx => "2m");
@@ -941,7 +941,7 @@ sub menu_select_standard_collections {
sub menu_select_symlink {
our ($lbin,$lman,$linfo);
- our $osym = $vars{'option_path'};
+ our $osym = $vars{'instopt_path'};
our ($binlab,$binb,$manlab,$manb,$infolab,$infob);
sub set_unset_buttons {
$lbin = ($osym ? $vars{'option_sys_bin'} : '');
@@ -969,8 +969,8 @@ sub menu_select_symlink {
$vars{'option_sys_info'} = $linfo;
$vars{'option_sys_man'} = $lman;
}
- $vars{'option_path'} = $osym;
- toggle_and_set_opt_variable(\$vars{'option_path'}, \$pathadjyesno);
+ $vars{'instopt_path'} = $osym;
+ toggle_and_set_opt_variable(\$vars{'instopt_path'}, \$pathadjyesno);
}
my $sw = $mainwindow->Toplevel(
-title => __('Create symlinks in system directories'));
@@ -1251,7 +1251,7 @@ sub toggle_portable {
$tmflocalbutton, $tmfsysvarbutton, $tmfsysconfigbutton, $tmfhomebutton) {
$b->configure(-state => 'disabled');
}
- $vars{'option_path'} = 0;
+ $vars{'instopt_path'} = 0;
$vars{'option_desktop_integration'} = 0;
$vars{'option_file_assocs'} = 0;
$vars{'option_w32_multi_user'} = 0;