mirror of
git://git.yoctoproject.org/poky
synced 2026-08-12 02:42:33 +00:00
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: 69ead1f2d403e6a0e5365ce4e89288f846d3ef33) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
12ea266a92
commit
136f0ee780
@ -276,6 +276,8 @@ def write_bblayers_conf(d, baseoutpath, sdkbblayers):
|
||||
def copy_uninative(d, baseoutpath):
|
||||
import shutil
|
||||
|
||||
uninative_checksum = None
|
||||
|
||||
# Copy uninative tarball
|
||||
# For now this is where uninative.bbclass expects the tarball
|
||||
if bb.data.inherits_class('uninative', d):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user