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:43:02 +0000
commit3c89b61533d33be674c1e480e6cca5982f6b4b10 (patch)
treecab766115a3f75146633fcc0ea7926d3a2b24624 /meta/lib
parente2280b9e12f625b4aa55dba86e68046a55326a8a (diff)
downloadopenembedded-core-contrib-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>
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)