mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
externalsrc: Fix deltask usage
An incorrect version of the patch merged which entirely removed the covered variable. This corrects the patch so the code works. (From OE-Core rev: 33874f9af895757c4b0fd2f4d350ed308edac03c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -47,7 +47,7 @@ python () {
|
|||||||
# Since configure will likely touch ${S}, ensure only we lock so one task has access at a time
|
# Since configure will likely touch ${S}, ensure only we lock so one task has access at a time
|
||||||
d.appendVarFlag(task, "lockfiles", "${S}/singletask.lock")
|
d.appendVarFlag(task, "lockfiles", "${S}/singletask.lock")
|
||||||
|
|
||||||
for task in covered:
|
for task in d.getVar("SRCTREECOVEREDTASKS", True).split():
|
||||||
bb.build.deltask(task, d)
|
bb.build.deltask(task, d)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user