summaryrefslogtreecommitdiffstats
path: root/meta/classes/externalsrc.bbclass
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:04 +0000
commit33874f9af895757c4b0fd2f4d350ed308edac03c (patch)
tree7897a2a2798775f0be0f96bdc4f0db0c405ce3c6 /meta/classes/externalsrc.bbclass
parent84b549afb46fce7b5cdaa977286aeb2e90d3bfdb (diff)
downloadopenembedded-core-33874f9af895757c4b0fd2f4d350ed308edac03c.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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/externalsrc.bbclass')
-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 53c71cb5f5..2ac62747a2 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)
}