summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/classextend.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-12-21 13:53:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-31 10:19:24 -0700
commitf01f0b8aed25af889f48fe1afff96feb3d9ed120 (patch)
treedee29020fe0b23d76ae9dcc213615fba223769a0 /meta/lib/oe/classextend.py
parentc2109b765b24a7ffe4781257ad3fe4641a3b2a49 (diff)
downloadopenembedded-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/oe/classextend.py')
-rw-r--r--meta/lib/oe/classextend.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/classextend.py b/meta/lib/oe/classextend.py
index fb0d967372..86b1e8a554 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):