aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-10-13 17:39:58 -0700
committerChris Larson <chris_larson@mentor.com>2010-10-13 17:39:58 -0700
commitd021e2b933c13f9b2028207a6db0858c1fbb4359 (patch)
treef1c8424e3464680f339e7ed20044e4abccc4b190 /classes
parentbe68ca616a9a0c6537b6afff6743c9a099241141 (diff)
downloadopenembedded-d021e2b933c13f9b2028207a6db0858c1fbb4359.tar.gz
utils.bbclass: add missing import of oe.process
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/utils.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/utils.bbclass b/classes/utils.bbclass
index 82beeb964e..24ff321e71 100644
--- a/classes/utils.bbclass
+++ b/classes/utils.bbclass
@@ -68,10 +68,12 @@ def oe_popen_env(d):
return env
def oe_run(d, cmd, **kwargs):
+ import oe.process
kwargs["env"] = oe_popen_env(d)
return oe.process.run(cmd, **kwargs)
def oe_popen(d, cmd, **kwargs):
+ import oe.process
kwargs["env"] = oe_popen_env(d)
return oe.process.popen(cmd, **kwargs)