aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorMing Liu <peter.x.liu@external.atlascopco.com>2017-01-26 14:29:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-31 14:40:18 +0000
commit5b53b34dcb64dc65ee651cbf78cbbd9105dc4f4c (patch)
treef9990555f59ec732f96b7d5494f9cfe28b7c9684 /meta/lib
parent87d03ffe03d6f01e360bfd51714be96e62506e0a (diff)
downloadopenembedded-core-contrib-5b53b34dcb64dc65ee651cbf78cbbd9105dc4f4c.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\) Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/data.py2
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):
continue
elif key.startswith("do_"):
continue
- elif d.getVarFlag(key, "func", True):
+ elif d.getVarFlag(key, "func"):
continue
keys2export.append(key)