diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2014-03-31 17:39:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-31 22:53:45 +0100 |
commit | 1e51b5a505a0a72ca063fcd87b344ef1c67f3f3c (patch) | |
tree | 2bbeb56d742f03c4ea885dfad34a28d4b79c6e61 /meta/classes | |
parent | edd500ed0de0cd085f5e5b3a3a317c1d511db3d2 (diff) | |
download | poky-1e51b5a505a0a72ca063fcd87b344ef1c67f3f3c.tar.gz |
toaster.bbclass: the license.manifest is located in DEPLOY_DIR
Replaced DEPLOY_DIR_IMAGE with DEPLOY_DIR
[YOCTO #6051]
(From OE-Core rev: 64c0ea3adccfc8af911b5e25e4c64a0abc578e6c)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/toaster.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/toaster.bbclass b/meta/classes/toaster.bbclass index f55a4d7927..9fb2cec4e4 100644 --- a/meta/classes/toaster.bbclass +++ b/meta/classes/toaster.bbclass | |||
@@ -299,10 +299,10 @@ python toaster_buildhistory_dump() { | |||
299 | # dump information related to license manifest path | 299 | # dump information related to license manifest path |
300 | 300 | ||
301 | python toaster_licensemanifest_dump() { | 301 | python toaster_licensemanifest_dump() { |
302 | deploy_dir_image = d.getVar('DEPLOY_DIR_IMAGE', True); | 302 | deploy_dir = d.getVar('DEPLOY_DIR', True); |
303 | image_name = d.getVar('IMAGE_NAME', True); | 303 | image_name = d.getVar('IMAGE_NAME', True); |
304 | 304 | ||
305 | data = { 'deploy_dir_image' : deploy_dir_image, 'image_name' : image_name } | 305 | data = { 'deploy_dir' : deploy_dir, 'image_name' : image_name } |
306 | 306 | ||
307 | bb.event.fire(bb.event.MetadataEvent("LicenseManifestPath", data), d) | 307 | bb.event.fire(bb.event.MetadataEvent("LicenseManifestPath", data), d) |
308 | } | 308 | } |