View | Details | Raw Unified
Collapse All | Expand All

(-) bin/emerge (+9 lines)
 Lines 2054-2059    Link Here 
					self.altlist()
					self.altlist()
				print "!!! Error: circular dependencies:"
				print "!!! Error: circular dependencies:"
				print
				print
				# Reduce the noise level to a minimum via elimination of root
				# nodes.
				while True:
					root_nodes = mygraph.root_nodes(
						ignore_priority=DepPriority.SOFT)
					if not root_nodes:
						break
					for node in root_nodes:
						mygraph.remove(node)
				mygraph.debug_print()
				mygraph.debug_print()
				sys.exit(1)
				sys.exit(1)