From 65250a5537da220dff662269cb81d086b66c2ace Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 23 Nov 2016 13:22:02 +0000 Subject: meta: remove True option to getVar calls getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) Signed-off-by: Joshua Lock --- scripts/devtool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/devtool') diff --git a/scripts/devtool b/scripts/devtool index 0c32c502a3..c23999e78c 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -290,7 +290,7 @@ def main(): if global_args.bbpath is None: tinfoil = setup_tinfoil(config_only=True, basepath=basepath) try: - global_args.bbpath = tinfoil.config_data.getVar('BBPATH', True) + global_args.bbpath = tinfoil.config_data.getVar('BBPATH') finally: tinfoil.shutdown() -- cgit 1.2.3-korg