From 8dfd28925fc47d8a4a1f10ec65df665c8326edc4 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 14 Mar 2014 19:06:26 -0700 Subject: lib/oe: turn oe into a namespace package This will let folks extend the oe package with modules from other layers. Given openembedded consists of more than just oe-core, I think this makes sense, and adds some useful flexibility. Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- meta/lib/oe/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/lib/oe/__init__.py b/meta/lib/oe/__init__.py index e69de29bb2..3ad9513f40 100644 --- a/meta/lib/oe/__init__.py +++ b/meta/lib/oe/__init__.py @@ -0,0 +1,2 @@ +from pkgutil import extend_path +__path__ = extend_path(__path__, __name__) -- cgit 1.2.3-korg