Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 508762
Collapse All | Expand All

(-)a/pym/_emerge/depgraph.py (-2 / +2 lines)
Lines 1540-1546 class depgraph(object): Link Here
1540
			slot operator parents.
1540
			slot operator parents.
1541
			"""
1541
			"""
1542
			for parent, atom in self._dynamic_config._parent_atoms.get(existing_pkg, []):
1542
			for parent, atom in self._dynamic_config._parent_atoms.get(existing_pkg, []):
1543
				if atom.slot_operator == "=" and parent.built:
1543
				if (atom.sub_slot is not None or atom.slot_operator == '=') \
1544
					and parent.built:
1544
					continue
1545
					continue
1545
1546
1546
				atom_set = InternalPackageSet(initial_atoms=(atom,),
1547
				atom_set = InternalPackageSet(initial_atoms=(atom,),
1547
- 

Return to bug 508762