summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-09-30 18:42:11 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-09-30 18:42:11 +0000
commitddf68d39f1c659069c7efd979dc39956b96e08bf (patch)
treebe26247776dbddb733a2660f4773c799ae151e11 /perl-install/standalone.pm
parent0e0fe92995bdc7debc3e6357041259e98f2fb7a5 (diff)
downloaddrakx-backup-do-not-use-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar
drakx-backup-do-not-use-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar.gz
drakx-backup-do-not-use-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar.bz2
drakx-backup-do-not-use-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar.xz
drakx-backup-do-not-use-ddf68d39f1c659069c7efd979dc39956b96e08bf.zip
perl_checker compliance
Diffstat (limited to 'perl-install/standalone.pm')
-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) {