aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2014-03-31 17:39:19 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-31 17:43:44 +0100
commit64c0ea3adccfc8af911b5e25e4c64a0abc578e6c (patch)
treebe27fb1d4c4e786f8bb4816602014de1ff9744f5
parentad66cd521d3e661dd57c5aa02c204585101984f3 (diff)
downloadopenembedded-core-contrib-64c0ea3adccfc8af911b5e25e4c64a0abc578e6c.tar.gz
toaster.bbclass: the license.manifest is located in DEPLOY_DIR
Replaced DEPLOY_DIR_IMAGE with DEPLOY_DIR [YOCTO #6051] Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/toaster.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/toaster.bbclass b/meta/classes/toaster.bbclass
index ce40afa84a..f7518ad61f 100644
--- a/meta/classes/toaster.bbclass
+++ b/meta/classes/toaster.bbclass
@@ -284,10 +284,10 @@ python toaster_buildhistory_dump() {
# dump information related to license manifest path
python toaster_licensemanifest_dump() {
- deploy_dir_image = d.getVar('DEPLOY_DIR_IMAGE', True);
+ deploy_dir = d.getVar('DEPLOY_DIR', True);
image_name = d.getVar('IMAGE_NAME', True);
- data = { 'deploy_dir_image' : deploy_dir_image, 'image_name' : image_name }
+ data = { 'deploy_dir' : deploy_dir, 'image_name' : image_name }
bb.event.fire(bb.event.MetadataEvent("LicenseManifestPath", data), d)
}