diff options
Diffstat (limited to 'URPM')
-rw-r--r-- | URPM/Resolve.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm index c799dff..24c283b 100644 --- a/URPM/Resolve.pm +++ b/URPM/Resolve.pm @@ -1307,6 +1307,7 @@ sub _handle_conflicts_with_selected { if (my $n = property2name($_)) { foreach my $p ($urpm->packages_providing($n)) { $pkg == $p and next; + $p->arch eq 'src' and next; $p->provides_overlap($_) or next; if (exists $state->{selected}{$p->id}) { $urpm->{debug_URPM}($pkg->fullname . " conflicts with already selected package " . $p->fullname) if $urpm->{debug_URPM}; |