From: Zac Medico Date: Tue, 21 Sep 2010 21:18:25 +0000 (-0700) Subject: Bug #337465 - Disable EbuildIpcDaemon on Darwin and FreeBSD since X-Git-Tag: v2.2_rc86~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0906fee12ffe0ebd07e8952316f03927962af29b;p=portage.git Bug #337465 - Disable EbuildIpcDaemon on Darwin and FreeBSD since it reportedly triggers a tight loop in emerge. This reverts commit 6085103bdd7623d941e3c6ae5905e66658c49fd7. --- diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py index d711c0585..abd5a3253 100644 --- a/pym/_emerge/AbstractEbuildProcess.py +++ b/pym/_emerge/AbstractEbuildProcess.py @@ -36,6 +36,14 @@ class AbstractEbuildProcess(SpawnProcess): # is left so we can temporarily disable it if any issues arise. _enable_ipc_daemon = True + # EbuildIpcDaemon does not work on these platforms yet: + # | Bug # | Platform + # |--------|------------ + # | 337465 | FreeBSD + # | | Darwin + if platform.system() in ('Darwin', 'FreeBSD',): + _enable_ipc_daemon = False + def __init__(self, **kwargs): SpawnProcess.__init__(self, **kwargs) if self.phase is None: