diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-29 12:55:24 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-29 12:55:24 +0000 |
commit | 9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87 (patch) | |
tree | 49753766c9ff72d8a81686404039119a52c4c365 /urpme | |
parent | 3a73605669044900b1a9ffb06069b7d03b590d9d (diff) | |
download | urpmi-9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87.tar urpmi-9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87.tar.gz urpmi-9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87.tar.bz2 urpmi-9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87.tar.xz urpmi-9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87.zip |
always ask user about packages which will be removed when using --parallel
option.
Diffstat (limited to 'urpme')
-rw-r--r-- | urpme | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ my @toremove = $urpm->find_packages_to_remove($state, \@l, if ($test && $auto) { my $msg = N("Checking to remove the following packages"); print STDOUT "$msg:\n" . join("\n", sort { $a cmp $b } @toremove) . "\n"; -} elsif (@toremove > @l && !$auto) { +} elsif ($parallel || @toremove > @l && !$auto) { my $sum = 0; foreach (@toremove) { $sum += $state->{rejected}{$_}{size}; |