diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-02 23:45:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-04 23:35:03 +0000 |
commit | 42a10788e89b07b14a150ced07113566cf99fcdd (patch) | |
tree | 7d4f14c3993cf1822ad17f0d67c8820314b6f17b /meta/classes/externalsrc.bbclass | |
parent | 247522b0eae6ec528350888d2283e84bb1e250fa (diff) | |
download | openembedded-core-contrib-42a10788e89b07b14a150ced07113566cf99fcdd.tar.gz |
classes/lib: Add expand parameter to getVarFlag
This sets the scene for removing the default False for expansion
from getVarFlag. This would later allow True to become the default.
On the most part this is an automatic translation with:
sed -e 's:\(\.getVarFlag([^,()]*, [^,()]*\)):\1, True):g' -i `grep -ril getVar *`
In this case, the default was False, but True was used since in most
cases here expansion would be expected.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/externalsrc.bbclass')
-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 be0fe55d5f1..607861f023e 100644 --- a/meta/classes/externalsrc.bbclass +++ b/meta/classes/externalsrc.bbclass @@ -51,7 +51,7 @@ python () { # Dummy value because the default function can't be called with blank SRC_URI d.setVar('SRCPV', '999') - tasks = filter(lambda k: d.getVarFlag(k, "task"), d.keys()) + tasks = filter(lambda k: d.getVarFlag(k, "task", True), d.keys()) for task in tasks: if task.endswith("_setscene"): |