]> code.ossystems Code Review - openembedded-core.git/commitdiff
toaster.bbclass: the license.manifest is located in DEPLOY_DIR
authorCristiana Voicu <cristiana.voicu@intel.com>
Mon, 31 Mar 2014 16:39:19 +0000 (17:39 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 31 Mar 2014 16:43:44 +0000 (17:43 +0100)
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>
meta/classes/toaster.bbclass

index ce40afa84a75ac030f60a1522bd81d06318706ab..f7518ad61f53cd50ec26d7329c87be7add730edd 100644 (file)
@@ -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)
 }