diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-09-30 18:42:11 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-09-30 18:42:11 +0000 |
commit | ddf68d39f1c659069c7efd979dc39956b96e08bf (patch) | |
tree | be26247776dbddb733a2660f4773c799ae151e11 | |
parent | 0e0fe92995bdc7debc3e6357041259e98f2fb7a5 (diff) | |
download | drakx-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar drakx-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar.gz drakx-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar.bz2 drakx-ddf68d39f1c659069c7efd979dc39956b96e08bf.tar.xz drakx-ddf68d39f1c659069c7efd979dc39956b96e08bf.zip |
perl_checker compliance
-rw-r--r-- | perl-install/standalone.pm | 4 |
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) { |