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:39:00 +0000 |
commit | 7fa6eeba1c1e4667820c8543343083fad75cabee (patch) | |
tree | 1f1c38bf800d5b8aacf00586cb3ce5145109d4f5 /meta/classes/utility-tasks.bbclass | |
parent | 252e64550a77b8e4a452d4f124bb8b378054d4de (diff) | |
download | poky-7fa6eeba1c1e4667820c8543343083fad75cabee.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.
(From OE-Core rev: 42a10788e89b07b14a150ced07113566cf99fcdd)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/utility-tasks.bbclass')
-rw-r--r-- | meta/classes/utility-tasks.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/utility-tasks.bbclass b/meta/classes/utility-tasks.bbclass index f62d523f5a..5bcfd0b72c 100644 --- a/meta/classes/utility-tasks.bbclass +++ b/meta/classes/utility-tasks.bbclass | |||
@@ -4,12 +4,12 @@ python do_listtasks() { | |||
4 | taskdescs = {} | 4 | taskdescs = {} |
5 | maxlen = 0 | 5 | maxlen = 0 |
6 | for e in d.keys(): | 6 | for e in d.keys(): |
7 | if d.getVarFlag(e, 'task'): | 7 | if d.getVarFlag(e, 'task', True): |
8 | maxlen = max(maxlen, len(e)) | 8 | maxlen = max(maxlen, len(e)) |
9 | if e.endswith('_setscene'): | 9 | if e.endswith('_setscene'): |
10 | desc = "%s (setscene version)" % (d.getVarFlag(e[:-9], 'doc') or '') | 10 | desc = "%s (setscene version)" % (d.getVarFlag(e[:-9], 'doc', True) or '') |
11 | else: | 11 | else: |
12 | desc = d.getVarFlag(e, 'doc') or '' | 12 | desc = d.getVarFlag(e, 'doc', True) or '' |
13 | taskdescs[e] = desc | 13 | taskdescs[e] = desc |
14 | 14 | ||
15 | tasks = sorted(taskdescs.keys()) | 15 | tasks = sorted(taskdescs.keys()) |