Disable EbuildIpcDaemon for Darwin (similar issues to FreeBSD).
authorZac Medico <zmedico@gentoo.org>
Sat, 18 Sep 2010 11:24:31 +0000 (04:24 -0700)
committerZac Medico <zmedico@gentoo.org>
Sat, 18 Sep 2010 11:24:31 +0000 (04:24 -0700)
pym/_emerge/AbstractEbuildProcess.py

index c5fb1d1caac2f9d52dc0298fe9b0d8052fca3eba..abd5a325302b940b5b6e1de58677acdbc1d93e08 100644 (file)
@@ -40,7 +40,8 @@ class AbstractEbuildProcess(SpawnProcess):
        # | Bug #  | Platform
        # |--------|------------
        # | 337465 | FreeBSD
-       if platform.system() in ('FreeBSD',):
+       # |        | Darwin
+       if platform.system() in ('Darwin', 'FreeBSD',):
                _enable_ipc_daemon = False
 
        def __init__(self, **kwargs):