diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-21 01:22:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-21 01:22:37 +0000 |
commit | 576d77f8a54bcbf0607a3b9c937d5a56248cb078 (patch) | |
tree | 069025fe31e0b5b15987f1127c0faddf19bf97fd /perl-install | |
parent | 7e8fa9773839843c9d8def81ec2ef1315115825a (diff) | |
download | drakx-576d77f8a54bcbf0607a3b9c937d5a56248cb078.tar drakx-576d77f8a54bcbf0607a3b9c937d5a56248cb078.tar.gz drakx-576d77f8a54bcbf0607a3b9c937d5a56248cb078.tar.bz2 drakx-576d77f8a54bcbf0607a3b9c937d5a56248cb078.tar.xz drakx-576d77f8a54bcbf0607a3b9c937d5a56248cb078.zip |
->{in}->do_pkgs gives the same kind of object, removing it
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/do_pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/do_pkgs.pm b/perl-install/do_pkgs.pm index eff29a3dc..f9dd64a1c 100644 --- a/perl-install/do_pkgs.pm +++ b/perl-install/do_pkgs.pm @@ -32,7 +32,7 @@ sub ensure_is_installed { sub ensure_is_installed_if_available { my ($do, $pkg, $file) = @_; if (! -e "$::prefix$file" && !$::testing) { - $do->{in}->do_pkgs->what_provides($pkg) and $do->{in}->do_pkgs->install($pkg); + $do->what_provides($pkg) and $do->install($pkg); } } |