diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-04 22:13:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-04 22:13:57 +0000 |
commit | 85e21d9abb2daf68be31c33dcdbc8874c3cc8fdc (patch) | |
tree | 3a45e1e56f50f9f59ea5d3db0be6b279ee0eb526 /perl-install/pkgs.pm | |
parent | f7537f35d8002323124bbb8aa40b627152660bf3 (diff) | |
download | drakx-85e21d9abb2daf68be31c33dcdbc8874c3cc8fdc.tar drakx-85e21d9abb2daf68be31c33dcdbc8874c3cc8fdc.tar.gz drakx-85e21d9abb2daf68be31c33dcdbc8874c3cc8fdc.tar.bz2 drakx-85e21d9abb2daf68be31c33dcdbc8874c3cc8fdc.tar.xz drakx-85e21d9abb2daf68be31c33dcdbc8874c3cc8fdc.zip |
no_comment
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 660f55965..8cae2a75f 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -314,7 +314,7 @@ sub setSelectedFromCompssList { map_index { $ind = $::i if $_ eq $install_class } @$compssListLevels; defined $ind or log::l("unknown install class $install_class in compssList"), return; - my @values = map { $_->{values}[$ind] } @packages; + my @values = map { $_->{values}[$ind] + ($_->{unskip} ? 10 : 0) } @packages; sort { $values[$b] <=> $values[$a] } 0 .. $#packages; }; foreach (@places) { |