summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe
diff options
context:
space:
mode:
authorJookia <contact@jookia.org>2024-05-09 11:40:20 +0100
committerSteve Sakoman <steve@sakoman.com>2024-07-17 05:36:13 -0700
commit3775d83439322e4b5861305046fbd80a7839a9a7 (patch)
tree9fdf9c6a2d3f7dd19b02f0015e4084a4d64e36e9 /meta/classes-recipe
parent942d8a996881c6db183b0748e13ec5d9515f839e (diff)
downloadpoky-3775d83439322e4b5861305046fbd80a7839a9a7.tar.gz
populate_sdk_ext.bbclass: Fix undefined variable error
The variable uninative_checksum is returned without being set, causing a build error. Set it to None by default instead. (From OE-Core rev: 5726348e04381d5c656a530c318775702136ec8c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 69ead1f2d403e6a0e5365ce4e89288f846d3ef33) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r--meta/classes-recipe/populate_sdk_ext.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes-recipe/populate_sdk_ext.bbclass b/meta/classes-recipe/populate_sdk_ext.bbclass
index f5687e5899..09d5e2aeb6 100644
--- a/meta/classes-recipe/populate_sdk_ext.bbclass
+++ b/meta/classes-recipe/populate_sdk_ext.bbclass
@@ -276,6 +276,8 @@ def write_bblayers_conf(d, baseoutpath, sdkbblayers):
276def copy_uninative(d, baseoutpath): 276def copy_uninative(d, baseoutpath):
277 import shutil 277 import shutil
278 278
279 uninative_checksum = None
280
279 # Copy uninative tarball 281 # Copy uninative tarball
280 # For now this is where uninative.bbclass expects the tarball 282 # For now this is where uninative.bbclass expects the tarball
281 if bb.data.inherits_class('uninative', d): 283 if bb.data.inherits_class('uninative', d):