mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 11:43:04 +01:00
bitbake/cooker: don't error in prepareTreeData for unbuildable targets
Set abort to False in prepareTreeData so that unbuildable targets do not raise an exception. Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
@@ -253,7 +253,9 @@ class BBCooker:
|
||||
localdata = data.createCopy(self.configuration.data)
|
||||
bb.data.update_data(localdata)
|
||||
bb.data.expandKeys(localdata)
|
||||
taskdata = bb.taskdata.TaskData(self.configuration.abort)
|
||||
# We set abort to False here to prevent unbuildable targets raising
|
||||
# an exception when we're just generating data
|
||||
taskdata = bb.taskdata.TaskData(False)
|
||||
|
||||
runlist = []
|
||||
for k in pkgs_to_build:
|
||||
|
||||
Reference in New Issue
Block a user