aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.pm
diff options
context:
space:
mode:
Diffstat (limited to 'URPM.pm')
-rw-r--r--URPM.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/URPM.pm b/URPM.pm
index 4e3b90f..c7c6c09 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -100,14 +100,14 @@ sub traverse_tag {
@names{@$names} = ();
if ($tag eq 'whatrequires') {
foreach (@{$urpm->{depslist} || []}) {
- if (grep { /^([^ \[]*)/ && exists $names{$1} } $_->requires) {
+ if (grep { exists $names{$_} } $_->requires_nosense) {
$callback and $callback->($_);
++$count;
}
}
} elsif ($tag eq 'whatconflicts') {
foreach (@{$urpm->{depslist} || []}) {
- if (grep { /^([^ \[]*)/ && exists $names{$1} } $_->conflicts) {
+ if (grep { exists $names{$_} } $_->conflicts_nosense) {
$callback and $callback->($_);
++$count;
}