mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
mutlilib: Handle WHITELIST_GPL-3.0 being unset
The code doesn't work if the variable is unset, fix that. (From OE-Core rev: b5248cc232629b021d8934899326468c3ef46351) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -77,9 +77,10 @@ python multilib_virtclass_handler () {
|
||||
|
||||
# Expand WHITELIST_GPL-3.0 with multilib prefix
|
||||
pkgs = e.data.getVar("WHITELIST_GPL-3.0")
|
||||
for pkg in pkgs.split():
|
||||
pkgs += " " + variant + "-" + pkg
|
||||
e.data.setVar("WHITELIST_GPL-3.0", pkgs)
|
||||
if pkgs:
|
||||
for pkg in pkgs.split():
|
||||
pkgs += " " + variant + "-" + pkg
|
||||
e.data.setVar("WHITELIST_GPL-3.0", pkgs)
|
||||
|
||||
# DEFAULTTUNE can change TARGET_ARCH override so expand this now before update_data
|
||||
newtune = e.data.getVar("DEFAULTTUNE:" + "virtclass-multilib-" + variant, False)
|
||||
|
||||
Reference in New Issue
Block a user