diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-12 21:00:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-12 21:00:37 +0000 |
commit | e1ae3c30935d77a0e27cc6441ebf7cf5c109721e (patch) | |
tree | c37f771180021612d5501f8c2eb11140de4a0363 /perl-install | |
parent | ff5bfa8afe03cf89d7a1bde7ea7d81480c734c40 (diff) | |
download | drakx-e1ae3c30935d77a0e27cc6441ebf7cf5c109721e.tar drakx-e1ae3c30935d77a0e27cc6441ebf7cf5c109721e.tar.gz drakx-e1ae3c30935d77a0e27cc6441ebf7cf5c109721e.tar.bz2 drakx-e1ae3c30935d77a0e27cc6441ebf7cf5c109721e.tar.xz drakx-e1ae3c30935d77a0e27cc6441ebf7cf5c109721e.zip |
(setPackages): don't readCompssUsers with $o->{packages}
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index e36ef986f..041df95b9 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -316,7 +316,7 @@ sub setPackages { $o->{compss} = pkgs::readCompss($o->{prefix}, $o->{packages}); #- must be done after getProvides pkgs::read_rpmsrate($o->{packages}, getFile("Mandrake/base/rpmsrate")); - ($o->{compssUsers}, $o->{compssUsersSorted}) = pkgs::readCompssUsers($o->{packages}, $o->{meta_class}); + ($o->{compssUsers}, $o->{compssUsersSorted}) = pkgs::readCompssUsers($o->{meta_class}); if ($::auto_install && !$o->{compssUsersChoice}) { $o->{compssUsersChoice}{$_} = 1 foreach map { @{$o->{compssUsers}{$_}{flags}} } @{$o->{compssUsersSorted}}; |