From: Cristiana Voicu Date: Mon, 31 Mar 2014 16:39:19 +0000 (+0100) Subject: toaster.bbclass: the license.manifest is located in DEPLOY_DIR X-Git-Tag: 2015-4~3162 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=64c0ea3adccfc8af911b5e25e4c64a0abc578e6c;p=openembedded-core.git toaster.bbclass: the license.manifest is located in DEPLOY_DIR Replaced DEPLOY_DIR_IMAGE with DEPLOY_DIR [YOCTO #6051] Signed-off-by: Cristiana Voicu Signed-off-by: Richard Purdie --- 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) }