diff options
author | Cristiana Voicu <cristiana.voicu@intel.com> | 2014-03-27 11:58:02 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-01 10:22:42 +0100 |
commit | fd4579e5f225e6bba3060ae119a12803fba71ccf (patch) | |
tree | e1306c5b0faaeb48bcb7b627ae12e23e6409d282 /bitbake | |
parent | 85eb8dbd6dda9b1c4ebc0cfefff9bfc1daf18c0f (diff) | |
download | poky-fd4579e5f225e6bba3060ae119a12803fba71ccf.tar.gz |
bitbake: toaster: use deploy_dir var to obtain the license.manifest path
[YOCTO #6051]
(Bitbake rev: 6dd8133b06bbda5cce50de39123f429a6a3f772d)
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index 0a155790cf..f448c8448b 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/lib/bb/ui/buildinfohelper.py | |||
@@ -629,7 +629,7 @@ class BuildInfoHelper(object): | |||
629 | 629 | ||
630 | 630 | ||
631 | def store_license_manifest_path(self, event): | 631 | def store_license_manifest_path(self, event): |
632 | deploy_dir = event.data['deploy_dir_image'] | 632 | deploy_dir = event.data['deploy_dir'] |
633 | image_name = event.data['image_name'] | 633 | image_name = event.data['image_name'] |
634 | path = deploy_dir + "/licenses/" + image_name + "/" | 634 | path = deploy_dir + "/licenses/" + image_name + "/" |
635 | for target in self.internal_state['targets']: | 635 | for target in self.internal_state['targets']: |