From 87d03ffe03d6f01e360bfd51714be96e62506e0a Mon Sep 17 00:00:00 2001 From: Ming Liu Date: Thu, 26 Jan 2017 14:26:44 +0100 Subject: meta: remove remaining True option to getVar calls This is a complementary fix to commit 7c552996: [ meta: remove True option to getVar calls ] it intended to remove all True option to getVar calls, but there are still some remaining. Search made with the following regex: getVar ?\((.*), True\) Signed-off-by: Ming Liu Signed-off-by: Ross Burton --- meta/classes/testsdk.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/classes/testsdk.bbclass') diff --git a/meta/classes/testsdk.bbclass b/meta/classes/testsdk.bbclass index 69689a1b36..75b40271fa 100644 --- a/meta/classes/testsdk.bbclass +++ b/meta/classes/testsdk.bbclass @@ -27,7 +27,7 @@ def testsdk_main(d): from oeqa.sdk.context import OESDKTestContext, OESDKTestContextExecutor from oeqa.utils import make_logger_bitbake_compatible - pn = d.getVar("PN", True) + pn = d.getVar("PN") logger = make_logger_bitbake_compatible(logging.getLogger("BitBake")) # sdk use network for download projects for build @@ -103,7 +103,7 @@ def testsdkext_main(d): from oeqa.utils import avoid_paths_in_environ, make_logger_bitbake_compatible from oeqa.sdkext.context import OESDKExtTestContext, OESDKExtTestContextExecutor - pn = d.getVar("PN", True) + pn = d.getVar("PN") logger = make_logger_bitbake_compatible(logging.getLogger("BitBake")) # extensible sdk use network -- cgit 1.2.3-korg