summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-09-14 15:23:03 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-09-14 15:23:03 +0000
commit8e69642c2e7afd3f06a492f0e71df4964cdfd06a (patch)
treefd31d44bfadae2287e296d91ddf7d0eba34b3a23 /perl-install/install/steps_interactive.pm
parent09af6fc79715341c9847c51e6ed342eafe5c8497 (diff)
downloaddrakx-8e69642c2e7afd3f06a492f0e71df4964cdfd06a.tar
drakx-8e69642c2e7afd3f06a492f0e71df4964cdfd06a.tar.gz
drakx-8e69642c2e7afd3f06a492f0e71df4964cdfd06a.tar.bz2
drakx-8e69642c2e7afd3f06a492f0e71df4964cdfd06a.tar.xz
drakx-8e69642c2e7afd3f06a492f0e71df4964cdfd06a.zip
cleanup: use URPM::packages_providing()
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 5e6c04aa0..c9954b430 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -799,7 +799,7 @@ sub summary {
any::selectCountry($o, $o->{locale}) or return;
my $pkg_locale = lang::locale_to_main_locale(lang::getlocale_for_country($o->{locale}{lang}, $o->{locale}{country}));
- my @pkgs = install::pkgs::packagesProviding($o->{packages}, "locales-$pkg_locale");
+ my @pkgs = URPM::packages_providing($o->{packages}, "locales-$pkg_locale");
$o->pkg_install(map { $_->name } @pkgs) if @pkgs;
lang::write_and_install($o->{locale}, $o->do_pkgs);