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: lucaceresoli/bug-15201-perf-libtraceevent-missing~33999 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64c0ea3adccfc8af911b5e25e4c64a0abc578e6c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 ce40afa84a7..f7518ad61f5 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) }