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:58:33 +0100 |
commit | bd0fc8e8927fb5d5ec4fb080b3f0d7b1b19b4583 (patch) | |
tree | 2867d841e358b7b689cbc0704ec05ec519811797 /meta/recipes-core | |
parent | 74f148ce8c7d6549c4f0155eeb3240220f8a33ad (diff) | |
download | poky-bd0fc8e8927fb5d5ec4fb080b3f0d7b1b19b4583.tar.gz |
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]
(From OE-Core rev: 09a2b158818e2ec3c3e3b53b6d14fd3527c32c99)
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() { | |||
37 | install -m 0644 -t ${D}/${SDKPATH} ${SDK_OUTPUT}/${SDKPATH}/* | 37 | install -m 0644 -t ${D}/${SDKPATH} ${SDK_OUTPUT}/${SDKPATH}/* |
38 | } | 38 | } |
39 | 39 | ||
40 | PN = "meta-environment-${TRANSLATED_TARGET_ARCH}" | 40 | PN = "meta-environment-${MACHINE}" |
41 | PACKAGES = "${PN}" | 41 | PACKAGES = "${PN}" |
42 | FILES_${PN}= " \ | 42 | FILES_${PN}= " \ |
43 | ${SDKPATH}/* \ | 43 | ${SDKPATH}/* \ |