From d021e2b933c13f9b2028207a6db0858c1fbb4359 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 13 Oct 2010 17:39:58 -0700 Subject: utils.bbclass: add missing import of oe.process Signed-off-by: Chris Larson --- classes/utils.bbclass | 2 ++ 1 file changed, 2 insertions(+) (limited to 'classes') 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) -- cgit 1.2.3-korg