From f526e28f6151611a51a858c87ac2319e48f54e7f Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 22 Jun 2012 23:38:35 -0700 Subject: slot_abi_mask_built: fix __eq__ for backtracking --- pym/_emerge/depgraph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index 07d30e64e..bdab7a6de 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1007,9 +1007,9 @@ class depgraph(object): abi_masks = {} if new_child_slot is None: if not child.installed: - abi_masks.setdefault(child, {})["slot_abi_mask_built"] = dep + abi_masks.setdefault(child, {})["slot_abi_mask_built"] = None if not dep.parent.installed: - abi_masks.setdefault(dep.parent, {})["slot_abi_mask_built"] = dep + abi_masks.setdefault(dep.parent, {})["slot_abi_mask_built"] = None if abi_masks: config.setdefault("slot_abi_mask_built", {}).update(abi_masks) -- cgit v1.2.3-1-g7c22