summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/AbstractEbuildProcess.py8
1 files changed, 8 insertions, 0 deletions
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: