From b5fd62f19464a8bbdf89e48e8067c80acb27f2a8 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 12 Sep 2007 14:38:51 +0000 Subject: replacing {backtrack}{closure} with {closure} since it looks like it was a typo --- URPM.pm | 1 - URPM/Resolve.pm | 4 ++-- 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: { 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. -- cgit v1.2.1