diff options
author | Ross Burton <ross.burton@intel.com> | 2016-02-03 16:34:52 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-04 23:39:02 +0000 |
commit | ce1bed7d3d8d952b393a2cb6c2e90af8580e4189 (patch) | |
tree | eb36052fecb3c629409f0ff5e9892cef802a08f3 | |
parent | e43504b0eb4536b586845b74cde2394f8a73979c (diff) | |
download | poky-ce1bed7d3d8d952b393a2cb6c2e90af8580e4189.tar.gz |
license.bbclass: add LICENSE_CREATE_PACKAGE to perform_packagecopy vardeps
This class has a perform_packagecopy_prepend() that uses LICENSE_CREATE_PACKAGE,
but the BitBake variable dependency code doesn't know that oe.data.typed_value()
is a getter. Until BitBake knows this, add an explicit vardeps.
[ YOCTO #5635 ]
(From OE-Core rev: 0450c74e36b5547e3e903fdabe0f52675ac94dea)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/license.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/license.bbclass b/meta/classes/license.bbclass index fe38d2152c..a7f377361c 100644 --- a/meta/classes/license.bbclass +++ b/meta/classes/license.bbclass | |||
@@ -312,6 +312,7 @@ python perform_packagecopy_prepend () { | |||
312 | copy_license_files(lic_files_paths, destdir) | 312 | copy_license_files(lic_files_paths, destdir) |
313 | add_package_and_files(d) | 313 | add_package_and_files(d) |
314 | } | 314 | } |
315 | perform_packagecopy[vardeps] += "LICENSE_CREATE_PACKAGE" | ||
315 | 316 | ||
316 | def get_recipe_info(d): | 317 | def get_recipe_info(d): |
317 | info = {} | 318 | info = {} |