diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-01-26 14:29:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:43:02 +0000 |
commit | 3c89b61533d33be674c1e480e6cca5982f6b4b10 (patch) | |
tree | cab766115a3f75146633fcc0ea7926d3a2b24624 | |
parent | e2280b9e12f625b4aa55dba86e68046a55326a8a (diff) | |
download | poky-3c89b61533d33be674c1e480e6cca5982f6b4b10.tar.gz |
meta: remove remaining True option to getVarFlag calls
This is a complementary fix to commit 2dea9e49:
[ meta: remove True option to getVarFlag calls ]
it intended to remove all True option to getVarFlag calls, but there are
still some remaining.
Search made with the following regex: getVarFlag ?\((.*), True\)
(From OE-Core rev: 5b53b34dcb64dc65ee651cbf78cbbd9105dc4f4c)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oe/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/data.py b/meta/lib/oe/data.py index 39567333f1..80bba2b9d2 100644 --- a/meta/lib/oe/data.py +++ b/meta/lib/oe/data.py | |||
@@ -30,7 +30,7 @@ def export2json(d, json_file, expand=True): | |||
30 | continue | 30 | continue |
31 | elif key.startswith("do_"): | 31 | elif key.startswith("do_"): |
32 | continue | 32 | continue |
33 | elif d.getVarFlag(key, "func", True): | 33 | elif d.getVarFlag(key, "func"): |
34 | continue | 34 | continue |
35 | 35 | ||
36 | keys2export.append(key) | 36 | keys2export.append(key) |