summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-07-29 14:12:04 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-07-29 14:12:04 +0000
commit38ad846c65d54a1f9d4c2e44016f6ed49b5d834f (patch)
tree8f0f842b6720e7c4882650df40dc1fc02acb8f2b /perl-install
parent8499a3c0961b2010d9033f3f1687829769ac15bd (diff)
downloaddrakx-38ad846c65d54a1f9d4c2e44016f6ed49b5d834f.tar
drakx-38ad846c65d54a1f9d4c2e44016f6ed49b5d834f.tar.gz
drakx-38ad846c65d54a1f9d4c2e44016f6ed49b5d834f.tar.bz2
drakx-38ad846c65d54a1f9d4c2e44016f6ed49b5d834f.tar.xz
drakx-38ad846c65d54a1f9d4c2e44016f6ed49b5d834f.zip
(check_rpm) backport fix from HEAD
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/wizards.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/wizards.pm b/perl-install/wizards.pm
index c5a39c4da..2ae0af4ca 100644
--- a/perl-install/wizards.pm
+++ b/perl-install/wizards.pm
@@ -91,7 +91,7 @@ sub new { bless {}, $_[0] }
sub check_rpm {
my ($in, $rpms) = @_;
foreach my $rpm (@$rpms) {
- next if !$in->do_pkgs->is_installed($rpm);
+ 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", c::from_utf8($rpm)))) {
$::testing and next;
if (!$in->do_pkgs->install($rpm)) {