diff options
-rw-r--r-- | NEWS | 4 | ||||
-rwxr-xr-x | rpmdrake | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +- rpmdrake: + o only look at name, not at full name (n-e-v-r) when performing + search in names (#45410) + Version 5.4 - 24 November 2008, Thierry Vignaud - edit-urpm-sources: @@ -72,7 +72,7 @@ sub do_search($$$$$$$) { if ($current_search_type eq 'normal') { my $count; foreach (@filtered_pkgs) { - next if !/$entry_rx/; + next if first(split_fullname($_)) !~ /$entry_rx/; push @search_results, $_; # FIXME: should be done for all research types last if $count++ > 2000; |