diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-09-15 04:01:22 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-09-15 04:01:22 -0700 |
commit | 0b68523b7f5332da377291ab89771af7ff3a61a2 (patch) | |
tree | c7d91530d328b1d0bf0c467b6bafa7c8476831b0 | |
parent | ea71e72f1294e1aefb6f234e1b2ffc906ea12289 (diff) | |
download | portage-0b68523b7f5332da377291ab89771af7ff3a61a2.tar.gz portage-0b68523b7f5332da377291ab89771af7ff3a61a2.tar.bz2 portage-0b68523b7f5332da377291ab89771af7ff3a61a2.zip |
Bug #337465 - Disable EbuildIpcDaemon on FreeBSD since it doesn'tv2.2_rc83
work yet.
-rw-r--r-- | pym/_emerge/AbstractEbuildProcess.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py index 37d6d7426..c5fb1d1ca 100644 --- a/pym/_emerge/AbstractEbuildProcess.py +++ b/pym/_emerge/AbstractEbuildProcess.py @@ -1,6 +1,7 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +import platform import stat import textwrap from _emerge.SpawnProcess import SpawnProcess @@ -35,6 +36,13 @@ 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 + if platform.system() in ('FreeBSD',): + _enable_ipc_daemon = False + def __init__(self, **kwargs): SpawnProcess.__init__(self, **kwargs) if self.phase is None: |