diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-21 08:56:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-21 09:00:52 +0000 |
commit | 6aa4de3b7c756f0d9635a98b89987c73fcce051e (patch) | |
tree | 89380b7a717ca14431a21ea5fe1dacae27cee781 /meta | |
parent | 394691762aa492d2b1494f2865b2b54d9eb79f06 (diff) | |
download | 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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/externalsrc.bbclass | 2 |
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 () { | |||
47 | # Since configure will likely touch ${S}, ensure only we lock so one task has access at a time | 47 | # Since configure will likely touch ${S}, ensure only we lock so one task has access at a time |
48 | d.appendVarFlag(task, "lockfiles", "${S}/singletask.lock") | 48 | d.appendVarFlag(task, "lockfiles", "${S}/singletask.lock") |
49 | 49 | ||
50 | for task in covered: | 50 | for task in d.getVar("SRCTREECOVEREDTASKS", True).split(): |
51 | bb.build.deltask(task, d) | 51 | bb.build.deltask(task, d) |
52 | } | 52 | } |
53 | 53 | ||