summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/standalone.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm
index 227031d29..c8a81ca89 100644
--- a/perl-install/standalone.pm
+++ b/perl-install/standalone.pm
@@ -182,11 +182,11 @@ sub install {
}
sub ensure_is_installed {
- my ($o, $pkg, $file, $auto) = @_;
+ my ($o, $pkg, $file, $b_auto) = @_;
if (! -e $file) {
$o->{in}->ask_okcancel('', N("The package %s needs to be installed. Do you want to install it?", $pkg), 1)
- or return if !$auto;
+ or return if !$b_auto;
$o->{in}->do_pkgs->install($pkg);
}
if (! -e $file) {