diff options
author | Christopher Larson <kergoth@gmail.com> | 2014-03-14 19:06:26 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-17 14:01:41 +0000 |
commit | e73f0f145c7748e255b0c2f25532d74f3491b62a (patch) | |
tree | 801c944aaada27d8ff021b662972b985b2123cab /meta | |
parent | bb18b49f84b8fc7aa8959fd9d4bbd80e4388f11b (diff) | |
download | poky-e73f0f145c7748e255b0c2f25532d74f3491b62a.tar.gz |
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.
(From OE-Core rev: 8dfd28925fc47d8a4a1f10ec65df665c8326edc4)
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 @@ | |||
1 | from pkgutil import extend_path | ||
2 | __path__ = extend_path(__path__, __name__) | ||