diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-22 17:43:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-31 10:21:04 -0700 |
commit | 81813c0e322dc04ce4b069117188d8a54dfddb8c (patch) | |
tree | 3363bac6dcdcdad14ba58efcea39529436cdf72d /meta/recipes-extended | |
parent | f01f0b8aed25af889f48fe1afff96feb3d9ed120 (diff) | |
download | openembedded-core-81813c0e322dc04ce4b069117188d8a54dfddb8c.tar.gz openembedded-core-81813c0e322dc04ce4b069117188d8a54dfddb8c.tar.bz2 openembedded-core-81813c0e322dc04ce4b069117188d8a54dfddb8c.zip |
nativesdk: Switch to using nativesdk as a prefix, not a suffix
As discussed on the mailing lists, using a suffix to package names is
hard and has lead to many recipes having to do PKGSUFFIX games. Its
looking extremely hard to scale nativesdk much further without hacking
many recipes.
By comparison, using a prefix like multilib does works much better and
doesn't involve "hacking" as many recipes. This change converts nativesdk
to use a prefix using the existing multilib infrastructure.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/bash/bash_4.2.bb | 1 | ||||
-rw-r--r-- | meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-extended/bash/bash_4.2.bb b/meta/recipes-extended/bash/bash_4.2.bb index 50f2ff64b8..384eb6265d 100644 --- a/meta/recipes-extended/bash/bash_4.2.bb +++ b/meta/recipes-extended/bash/bash_4.2.bb @@ -39,3 +39,4 @@ SRC_URI[patch009.sha256sum] = "e7ed5440b4c19765786e90e4f1ded43195d38b3e4d1c4b39f SRC_URI[patch010.md5sum] = "0a51602b535ef661ee707be6c8bdb373" SRC_URI[patch010.sha256sum] = "acfc5482c25e6923116fcf4b4f7f6345b80f75ad7299749db4b736ad67aa43dc" +BBCLASSEXTEND = "nativesdk" diff --git a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb index e0c710b038..5f92deb689 100644 --- a/meta/recipes-extended/bzip2/bzip2_1.0.6.bb +++ b/meta/recipes-extended/bzip2/bzip2_1.0.6.bb @@ -43,4 +43,5 @@ SECTION_libbz2-staticdev = "devel" RDEPENDS_libbz2-staticdev = "libbz2-dev (= ${EXTENDPKGV})" PROVIDES_append_virtclass-native = " bzip2-replacement-native" -BBCLASSEXTEND = "native" +BBCLASSEXTEND = "native nativesdk" + |