git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
130ff50
)
utils: fix popen->Popen reference
author
Chris Larson
<chris_larson@mentor.com>
Thu, 14 Oct 2010 04:43:38 +0000
(21:43 -0700)
committer
Chris Larson
<chris_larson@mentor.com>
Thu, 14 Oct 2010 04:43:58 +0000
(21:43 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
classes/utils.bbclass
patch
|
blob
|
history
diff --git
a/classes/utils.bbclass
b/classes/utils.bbclass
index
24ff321
..
acea01b
100644
(file)
--- a/
classes/utils.bbclass
+++ b/
classes/utils.bbclass
@@
-75,7
+75,7
@@
def oe_run(d, cmd, **kwargs):
def oe_popen(d, cmd, **kwargs):
import oe.process
kwargs["env"] = oe_popen_env(d)
- return oe.process.
p
open(cmd, **kwargs)
+ return oe.process.
P
open(cmd, **kwargs)
def oe_system(d, cmd, **kwargs):
""" Popen based version of os.system. """