diff options
-rw-r--r-- | urpm/select.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/urpm/select.pm b/urpm/select.pm index ff144d39..59c56c6e 100644 --- a/urpm/select.pm +++ b/urpm/select.pm @@ -558,7 +558,9 @@ sub translate_why_unselected_one { my $obj = $state->{rejected}{$fullname}; my $rb = $obj->{backtrack}; my @unsatisfied = @{$rb->{unsatisfied} || []}; + my @conflicts = @{$rb->{conflicts} || []}; my $s = join ", ", ( + (map { N("due to conflicts with %s", $_) } @conflicts), (map { N("due to unsatisfied %s", $_) } uniq(map { #- XXX in theory we shouldn't need this, dependencies (and not ids) should #- already be present in @unsatisfied. But with biarch packages this is |