summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-12-04 20:15:14 +0000
committerThierry Vignaud <tv@mageia.org>2012-12-04 20:15:14 +0000
commitf5912db2e732b487f6a6c09b3d51622229045f14 (patch)
tree575d090d68ccb9bde45b279971f60626dfd37ab5 /urpm
parent415363dfe2ae517d8a68471f801c2a040750c65d (diff)
downloadurpmi-f5912db2e732b487f6a6c09b3d51622229045f14.tar
urpmi-f5912db2e732b487f6a6c09b3d51622229045f14.tar.gz
urpmi-f5912db2e732b487f6a6c09b3d51622229045f14.tar.bz2
urpmi-f5912db2e732b487f6a6c09b3d51622229045f14.tar.xz
urpmi-f5912db2e732b487f6a6c09b3d51622229045f14.zip
(_search_packages) do not attempt fuzzy matching if not using --fuzzy
it's also a huge speedup (saves 28% of time spent in testsuite) this fixes urpmq defaulting to fuzzy mode (mga#2953)
Diffstat (limited to 'urpm')
-rw-r--r--urpm/select.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/urpm/select.pm b/urpm/select.pm
index 416c2fd7..553353d5 100644
--- a/urpm/select.pm
+++ b/urpm/select.pm
@@ -178,14 +178,12 @@ sub _search_packages {
if (!$options{fuzzy}) {
if ($pack eq $v) {
$exact{$v} = $id;
- next;
} elsif ($pack_a eq $v) {
push @{$exact_a{$v}}, $id;
- next;
} elsif ($pack_ra eq $v || $options{src} && $pack_name eq $v) {
push @{$exact_ra{$v}}, $id;
- next;
}
+ next;
}
if ($pack =~ /$qv/) {
next if member($pack, @found);