diff options
author | Francois Pons <fpons@mandriva.com> | 2002-08-30 18:18:17 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-08-30 18:18:17 +0000 |
commit | 5970e660017e7b694a7672d014a46e4916de22d5 (patch) | |
tree | 6576892e7e7fa95a33207bd527096d4f811e2e0a /perl-install | |
parent | d126d800ee00f3a1b2d9dda34bcc75fa9efbff69 (diff) | |
download | drakx-5970e660017e7b694a7672d014a46e4916de22d5.tar drakx-5970e660017e7b694a7672d014a46e4916de22d5.tar.gz drakx-5970e660017e7b694a7672d014a46e4916de22d5.tar.bz2 drakx-5970e660017e7b694a7672d014a46e4916de22d5.tar.xz drakx-5970e660017e7b694a7672d014a46e4916de22d5.zip |
fixed call to pkgs::remove.
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 989fcba41..7e130333b 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -356,7 +356,7 @@ sub installPackages($$) { #- complete REWORK, TODO and TOCHECK! if (%{$packages->{state}{ask_remove} || {}}) { log::l("removing : ", join ', ', keys %{$packages->{state}{ask_remove}}); - pkgs::remove($o->{prefix}, keys %{$packages->{state}{ask_remove}}); + pkgs::remove($o->{prefix}, [ keys %{$packages->{state}{ask_remove}} ]); } #- small transaction will be built based on this selection and depslist. |