summaryrefslogtreecommitdiffstats
path: root/perl-install/wizards.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-23 19:50:48 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-23 19:50:48 +0000
commit9186647ea5fd7505f6920c2debfd4f9e2000458f (patch)
tree7b738a881f825c65fdbae43f45b8a9154181b73e /perl-install/wizards.pm
parent0e8899e3f41e01d15f03727131dc71f9034eca12 (diff)
downloaddrakx-9186647ea5fd7505f6920c2debfd4f9e2000458f.tar
drakx-9186647ea5fd7505f6920c2debfd4f9e2000458f.tar.gz
drakx-9186647ea5fd7505f6920c2debfd4f9e2000458f.tar.bz2
drakx-9186647ea5fd7505f6920c2debfd4f9e2000458f.tar.xz
drakx-9186647ea5fd7505f6920c2debfd4f9e2000458f.zip
help perl_checker
Diffstat (limited to 'perl-install/wizards.pm')
-rw-r--r--perl-install/wizards.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/wizards.pm b/perl-install/wizards.pm
index b0f03e340..116df8be2 100644
--- a/perl-install/wizards.pm
+++ b/perl-install/wizards.pm
@@ -4,6 +4,7 @@ package wizards;
use strict;
use c;
use common;
+# perl_checker: require interactive
=head1 NAME
@@ -89,7 +90,7 @@ sub new {
sub check_rpm {
- my ($in, $rpms) = @_;
+ my ($in, $rpms) = @_; # perl_checker: $in = interactive->new
foreach my $rpm (@$rpms) {
next if $in->do_pkgs->is_installed($rpm);
if ($in->ask_okcancel(N("Error"), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", $rpm))) {