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>
This commit is contained in:
Cristiana Voicu 2014-03-31 17:39:19 +01:00 committed by Richard Purdie
parent edd500ed0d
commit 1e51b5a505
1 changed files with 2 additions and 2 deletions

View File

@ -299,10 +299,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)
}