projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
056bcf3
)
Disable EbuildIpcDaemon for Darwin (similar issues to FreeBSD).
author
Zac Medico
<zmedico@gentoo.org>
Sat, 18 Sep 2010 11:24:31 +0000
(
04:24
-0700)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 18 Sep 2010 11:24:31 +0000
(
04:24
-0700)
pym/_emerge/AbstractEbuildProcess.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/AbstractEbuildProcess.py
b/pym/_emerge/AbstractEbuildProcess.py
index c5fb1d1caac2f9d52dc0298fe9b0d8052fca3eba..abd5a325302b940b5b6e1de58677acdbc1d93e08 100644
(file)
--- a/
pym/_emerge/AbstractEbuildProcess.py
+++ b/
pym/_emerge/AbstractEbuildProcess.py
@@
-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):