aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--URPM.pm1
-rw-r--r--URPM/Resolve.pm4
2 files changed, 2 insertions, 3 deletions
diff --git a/URPM.pm b/URPM.pm
index 4a3b368..2673825 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -805,7 +805,6 @@ B<rejected>: { fullname => {
backtrack => { # those info are only used to display why package is unselected
promote => [ name ], keep => [ fullname ],
unsatisfied => [ id|property ],
- closure => { fullname => undef },
},
closure => { fullname => { old_requested => bool,
unsatisfied => [ id|property ],
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm
index 3040859..025de72 100644
--- a/URPM/Resolve.pm
+++ b/URPM/Resolve.pm
@@ -444,7 +444,7 @@ sub backtrack_selected {
foreach (@l) {
#- disable all these packages in order to avoid selecting them again.
$_->fullname eq $dep->{from}->fullname or
- $state->{rejected}{$_->fullname}{backtrack}{closure}{$dep->{from}->fullname} = undef;
+ $state->{rejected}{$_->fullname}{closure}{$dep->{from}->fullname} ||= undef;
}
}
#- the package is already rejected, we assume we can add another reason here!
@@ -491,7 +491,7 @@ sub backtrack_selected_psel_keep {
foreach (@l) {
#- disable all these packages in order to avoid selecting them again.
$_->fullname eq $psel->fullname or
- $state->{rejected}{$_->fullname}{backtrack}{closure}{$psel->fullname} = undef;
+ $state->{rejected}{$_->fullname}{closure}{$psel->fullname} ||= undef;
}
}
#- to simplify, a reference to list or standalone elements may be set in keep.