From 0450c74e36b5547e3e903fdabe0f52675ac94dea Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 3 Feb 2016 16:34:52 +0000 Subject: [PATCH] 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 ] Signed-off-by: Ross Burton --- meta/classes/license.bbclass | 1 + 1 file changed, 1 insertion(+) 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 () { copy_license_files(lic_files_paths, destdir) add_package_and_files(d) } +perform_packagecopy[vardeps] += "LICENSE_CREATE_PACKAGE" def get_recipe_info(d): info = {} -- 2.40.1