summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-21 08:56:48 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-12-21 09:00:52 +0000
commit6aa4de3b7c756f0d9635a98b89987c73fcce051e (patch)
tree89380b7a717ca14431a21ea5fe1dacae27cee781
parent394691762aa492d2b1494f2865b2b54d9eb79f06 (diff)
downloadast2050-yocto-poky-6aa4de3b7c756f0d9635a98b89987c73fcce051e.zip
ast2050-yocto-poky-6aa4de3b7c756f0d9635a98b89987c73fcce051e.tar.gz
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>
-rw-r--r--meta/classes/externalsrc.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass
index 53c71cb..2ac6274 100644
--- a/meta/classes/externalsrc.bbclass
+++ b/meta/classes/externalsrc.bbclass
@@ -47,7 +47,7 @@ python () {
# 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")
- for task in covered:
+ for task in d.getVar("SRCTREECOVEREDTASKS", True).split():
bb.build.deltask(task, d)
}
OpenPOWER on IntegriCloud