summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2003-07-29 12:56:30 +0000
committerFrancois Pons <fpons@mandriva.com>2003-07-29 12:56:30 +0000
commit57fb249a9c4ab02405793a226b84821165984b92 (patch)
tree47f3e1b2765fa5a28090671ade86f04078f6befe
parent9b3faa24fb2ce8367c11468d44cac9c8a1ff6a87 (diff)
downloadurpmi-57fb249a9c4ab02405793a226b84821165984b92.tar
urpmi-57fb249a9c4ab02405793a226b84821165984b92.tar.gz
urpmi-57fb249a9c4ab02405793a226b84821165984b92.tar.bz2
urpmi-57fb249a9c4ab02405793a226b84821165984b92.tar.xz
urpmi-57fb249a9c4ab02405793a226b84821165984b92.zip
--auto should not disable urpme to print approximate name (reported by both
FredC and Erwan).
-rw-r--r--urpm.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index e42f3424..7868e37c 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -2888,7 +2888,7 @@ sub find_packages_to_remove {
push @notfound, $_;
}
- if (@notfound && ($options{auto} || @$l > 1)) {
+ if (@notfound && @$l > 1) {
$options{callback_notfound} and $options{callback_notfound}->($urpm, @notfound)
or return ();
}