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>
This commit is contained in:
Ming Liu 2017-01-26 14:29:32 +01:00 committed by Richard Purdie
parent e2280b9e12
commit 3c89b61533
1 changed files with 1 additions and 1 deletions

View File

@ -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)