diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2014-06-24 19:28:05 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-25 11:49:39 +0100 |
commit | d0cb34cfe9a51fd8bc1e6e28c8eda60a25adc1ec (patch) | |
tree | c2733f044988ebe39286ccde277c5732db3ccb18 | |
parent | 0d3f7a753f17fa8c455f64e3df3259ef1887fd8a (diff) | |
download | openembedded-core-d0cb34cfe9a51fd8bc1e6e28c8eda60a25adc1ec.tar.gz openembedded-core-d0cb34cfe9a51fd8bc1e6e28c8eda60a25adc1ec.tar.bz2 openembedded-core-d0cb34cfe9a51fd8bc1e6e28c8eda60a25adc1ec.zip |
populate_sdk: Fix TOOLCHAIN_TARGET_TASK_ATTEMPTONLY implementation
The variable was only partially implemented, and the part that was there
was named incorrectly to, missing the 'TASK' piece.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 1 | ||||
-rw-r--r-- | meta/lib/oe/manifest.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 35d837d5df..d3d8422124 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass @@ -55,6 +55,7 @@ fakeroot python do_populate_sdk() { pn = d.getVar('PN', True) runtime_mapping_rename("TOOLCHAIN_TARGET_TASK", pn, d) + runtime_mapping_rename("TOOLCHAIN_TARGET_TASK_ATTEMPTONLY", pn, d) # create target/host SDK manifests create_manifest(d, manifest_dir=d.getVar('SDK_DIR', True), diff --git a/meta/lib/oe/manifest.py b/meta/lib/oe/manifest.py index afda76be66..42832f15d2 100644 --- a/meta/lib/oe/manifest.py +++ b/meta/lib/oe/manifest.py @@ -31,7 +31,7 @@ class Manifest(object): }, MANIFEST_TYPE_SDK_TARGET: { "TOOLCHAIN_TARGET_TASK": PKG_TYPE_MUST_INSTALL, - "TOOLCHAIN_TARGET_ATTEMPTONLY": PKG_TYPE_ATTEMPT_ONLY + "TOOLCHAIN_TARGET_TASK_ATTEMPTONLY": PKG_TYPE_ATTEMPT_ONLY } } |