diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-21 13:53:11 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-31 10:19:24 -0700 |
commit | f01f0b8aed25af889f48fe1afff96feb3d9ed120 (patch) | |
tree | dee29020fe0b23d76ae9dcc213615fba223769a0 /meta/lib | |
parent | c2109b765b24a7ffe4781257ad3fe4641a3b2a49 (diff) | |
download | openembedded-core-contrib-f01f0b8aed25af889f48fe1afff96feb3d9ed120.tar.gz |
nativesdk: Convert to use classextend.py
This patch converts the nativesdk class itself from operating as a suffix
to a prefix (see the proceeding patch for the related changes outside this
class).
The big benefit here is that we can reuse the generic class extension code.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/classextend.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py index fb0d9673723..86b1e8a5549 100644 --- a/meta/lib/oe/classextend.py +++ b/meta/lib/oe/classextend.py @@ -7,6 +7,10 @@ class ClassExtender(object): def extend_name(self, name): if name.startswith("kernel-module"): return name + if name.startswith("rtld"): + return name + if name.endswith("-" + self.extname): + name = name.replace("-" + self.extname, "") if name.startswith("virtual/"): subs = name.split("/", 1)[1] if not subs.startswith(self.extname): |