diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-09-10 18:10:46 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-10 22:52:58 +0100 |
commit | 09a2b158818e2ec3c3e3b53b6d14fd3527c32c99 (patch) | |
tree | 24de87cabe30c6ba0f4d79774daa7fead09760c2 /meta/recipes-core | |
parent | 659528f0f99cec94991ec96fa124c4497237e9f8 (diff) | |
download | openembedded-core-09a2b158818e2ec3c3e3b53b6d14fd3527c32c99.tar.gz openembedded-core-09a2b158818e2ec3c3e3b53b6d14fd3527c32c99.tar.bz2 openembedded-core-09a2b158818e2ec3c3e3b53b6d14fd3527c32c99.zip |
meta-environment: change package name to include MACHINE
Currently, the package name contains just the TRANSLATED_TARGET_ARCH.
When compiling the toolchain for two machines, belonging to the same
architecture (for example: qemuarm and beagleboard), this package gets
overwritten and adt-installer repo will contain just one
meta-environment package... This leads to situations like installing the
toolchain for qemuarm and end up with meta-environment package with
beagleboard cpu options.
[YOCTO #4783]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/meta-environment.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb index 97313000f6..3a71a9bb2e 100644 --- a/meta/recipes-core/meta/meta-environment.bb +++ b/meta/recipes-core/meta/meta-environment.bb @@ -37,7 +37,7 @@ do_install() { install -m 0644 -t ${D}/${SDKPATH} ${SDK_OUTPUT}/${SDKPATH}/* } -PN = "meta-environment-${TRANSLATED_TARGET_ARCH}" +PN = "meta-environment-${MACHINE}" PACKAGES = "${PN}" FILES_${PN}= " \ ${SDKPATH}/* \ |