diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-09-25 01:17:44 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-09-25 01:17:44 -0700 |
commit | 181e1613d9cd43563519a9439de99abe2a51d31c (patch) | |
tree | 6f0c06fc18bb3213196d9ca9e42745dffd3ce159 | |
parent | 7e5b81da12dd7bd59f6620840dc0d824e3f4d69a (diff) | |
download | portage-181e1613d9cd43563519a9439de99abe2a51d31c.tar.gz portage-181e1613d9cd43563519a9439de99abe2a51d31c.tar.bz2 portage-181e1613d9cd43563519a9439de99abe2a51d31c.zip |
Bug #337465 - Enable EbuildIpcDaemon on Darwin and FreeBSD since
it seems fixed now.
This reverts commit 0906fee12ffe0ebd07e8952316f03927962af29b.
-rw-r--r-- | pym/_emerge/AbstractEbuildProcess.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pym/_emerge/AbstractEbuildProcess.py b/pym/_emerge/AbstractEbuildProcess.py index abd5a3253..d711c0585 100644 --- a/pym/_emerge/AbstractEbuildProcess.py +++ b/pym/_emerge/AbstractEbuildProcess.py @@ -36,14 +36,6 @@ 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: |