From fb02ca3a162552e2947d953af662cd0771f4c6f4 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 29 Dec 2010 17:13:29 -0700 Subject: oe.utils: add bb, bb.data imports While the metadata can and should rely on bb always being available, this needn't necessarily be the case for imported python modules. (From OE-Core rev: a521835701c07f5786acd663fb4fb394e93eba91) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- meta/lib/oe/utils.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta/lib') diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index 3469700726..69f9384dc7 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py @@ -1,3 +1,5 @@ +import bb, bb.data + def read_file(filename): try: f = file( filename, "r" ) -- cgit v1.2.3-54-g00ecf