From: Chris Larson Date: Thu, 30 Dec 2010 00:13:29 +0000 (-0700) Subject: oe.utils: add bb, bb.data imports X-Git-Tag: 2011-1~1976 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a521835701c07f5786acd663fb4fb394e93eba91;p=openembedded-core.git 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. Signed-off-by: Chris Larson --- 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" )