summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
Diffstat (limited to 'Master')
-rw-r--r--Master/tlpkg/installer/install-menu-wizard.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl
index c5a527c9f33..e1408df8266 100644
--- a/Master/tlpkg/installer/install-menu-wizard.pl
+++ b/Master/tlpkg/installer/install-menu-wizard.pl
@@ -642,9 +642,9 @@ sub ask_go {
for my $o (@opts_list) {
my $text = $opts_to_str{$o} . ":\t";
if (exists ($opts_choices{$o})) {
- $text .= $opts_choices{$o}->[$vars{"option_$o"}];
+ $text .= $opts_choices{$o}->[$vars{$o}];
} else {
- $text .= $vars{"option_$o"} ? __("Yes") : __("No");
+ $text .= $vars{$o} ? __("Yes") : __("No");
}
$fmain->Label(-justify => "left",
-text => $text)->place(-x => 0, -y => $ytmp);