diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-11-30 10:14:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-11-30 10:14:46 +0000 |
commit | 3ccf4fa6a9e2e17fe5bd8bf1b23500cae7379a1e (patch) | |
tree | 7db1a2601d861c339d3fdb65a16f7a92a355f7d8 /urpm | |
parent | 9571638b8f4070a263159530c079e2818fd200ba (diff) | |
download | urpmi-3ccf4fa6a9e2e17fe5bd8bf1b23500cae7379a1e.tar urpmi-3ccf4fa6a9e2e17fe5bd8bf1b23500cae7379a1e.tar.gz urpmi-3ccf4fa6a9e2e17fe5bd8bf1b23500cae7379a1e.tar.bz2 urpmi-3ccf4fa6a9e2e17fe5bd8bf1b23500cae7379a1e.tar.xz urpmi-3ccf4fa6a9e2e17fe5bd8bf1b23500cae7379a1e.zip |
- urpmi:
o fix regression introduced in 4.10.15:
"urpmi --force valid invalid" should warn about "invalid" but still
install "valid"
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/select.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/select.pm b/urpm/select.pm index 10dba29b..2d346ae2 100644 --- a/urpm/select.pm +++ b/urpm/select.pm @@ -182,7 +182,7 @@ sub _search_packages { N("The following packages contain %s: %s", $v, "\n" . join("\n", sort { $a cmp $b } keys %l)) ); - return; + $result = 0; } else { if (!@{$exact_a{$v} || $exact_ra{$v} || []}) { #- we found a non-exact match |