summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
index 6b55cc79b26..7798fad70c9 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui.pl
@@ -243,8 +243,8 @@ my $loc = $localtlpdb->option("location");
if (defined($loc)) {
$location = $loc;
}
-if (defined($opt_location)) {
- $location = $opt_location;
+if (defined($opts{"location"})) {
+ $location = $opts{"location"};
}
our @allpackages;
@@ -302,7 +302,7 @@ $balloon->attach(
# it that way
$balloon->attach(
$top->Checkbutton(-text => ___"debug",
- -onvalue => ($opt_verbosity == 0 ? 1 : $opt_verbosity),
+ -onvalue => ($::opt_verbosity == 0 ? 1 : $::opt_verbosity),
-variable => \$::opt_verbosity)->pack(-side => 'left'),
-balloonmsg => ___"debugballoon");