[OE-core] [PATCH] pakcage.bbclass:use a better way to cut -dev/-dbg suffix

Song.Li at windriver.com Song.Li at windriver.com
Fri Feb 22 10:52:19 UTC 2013


From: "Song.Li" <Song.Li at windriver.com>

In pakcage.bbclass,function replace('-dev', '') is
used to cut '-dev' suffix. but it will cause the
name "lib32-device-dev" to "lib32ice",
so change it to [:-4].

Signed-off-by: Song.Li <Song.Li at windriver.com>
---
 meta/classes/package.bbclass |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 77b3b4a..b9ac0e6 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1634,9 +1634,9 @@ python package_depchains() {
                 #bb.note("Skipping %s" % depend)
                 continue
             if depend.endswith('-dev'):
-                depend = depend.replace('-dev', '')
+                depend = depend[:-4]
             if depend.endswith('-dbg'):
-                depend = depend.replace('-dbg', '')
+                depend = depend[:-4]
             pkgname = getname(depend, suffix)
             #bb.note("Adding %s for %s" % (pkgname, depend))
             if pkgname not in rreclist and pkgname != pkg:
@@ -1655,9 +1655,9 @@ python package_depchains() {
                 #bb.note("Skipping %s" % depend)
                 continue
             if depend.endswith('-dev'):
-                depend = depend.replace('-dev', '')
+                depend = depend[:-4]
             if depend.endswith('-dbg'):
-                depend = depend.replace('-dbg', '')
+                depend = depend[:-4]
             pkgname = getname(depend, suffix)
             #bb.note("Adding %s for %s" % (pkgname, depend))
             if pkgname not in rreclist and pkgname != pkg:
-- 
1.7.9.5





More information about the Openembedded-core mailing list