projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8155eaf
)
Remove redundant os.path.join() call in _init_ipc_fifos().
author
Zac Medico
<zmedico@gentoo.org>
Sun, 15 Aug 2010 16:17:17 +0000
(09:17 -0700)
committer
Zac Medico
<zmedico@gentoo.org>
Sun, 15 Aug 2010 16:17:17 +0000
(09:17 -0700)
pym/_emerge/AbstractEbuildProcess.py
patch
|
blob
|
history
diff --git
a/pym/_emerge/AbstractEbuildProcess.py
b/pym/_emerge/AbstractEbuildProcess.py
index 444feb7f450763cbd5c0a8282c57a264c64a4652..e2be8b856291437a04082645a9f33ae11ae0913a 100644
(file)
--- a/
pym/_emerge/AbstractEbuildProcess.py
+++ b/
pym/_emerge/AbstractEbuildProcess.py
@@
-77,9
+77,7
@@
class AbstractEbuildProcess(SpawnProcess):
output_fifo = os.path.join(
self.settings['PORTAGE_BUILDDIR'], '.ipc_out')
- for x in (input_fifo, output_fifo):
-
- p = os.path.join(self.settings['PORTAGE_BUILDDIR'], x)
+ for p in (input_fifo, output_fifo):
st = None
try: