diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 92b622fa8..28eea781c 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -306,7 +306,7 @@ sub pkg_install_if_requires_satisfied { my $pkg = pkgs::packageByName($o->{packages}, $_) || die "$_ rpm not found"; pkgs::selectPackage($o->{packages}, $pkg, 0, \%newSelection) foreach @l; if (scalar(keys %newSelection) == 1) { - pkg::selectPackage($o->{packages}, $pkg); + pkgs::selectPackage($o->{packages}, $pkg); } } $o->installPackages; |