summaryrefslogtreecommitdiffstats
path: root/meta/classes/testsdk.bbclass
diff options
context:
space:
mode:
authorMing Liu <peter.x.liu@external.atlascopco.com>2017-01-26 14:26:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-31 14:43:02 +0000
commite2280b9e12f625b4aa55dba86e68046a55326a8a (patch)
treeefc8f97ab7cc624e812f1d6c2946f919f71efcf0 /meta/classes/testsdk.bbclass
parent8b448ab0127cfc79df8ce601e2e8b93179ebbcbc (diff)
downloadpoky-e2280b9e12f625b4aa55dba86e68046a55326a8a.tar.gz
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\) (From OE-Core rev: 87d03ffe03d6f01e360bfd51714be96e62506e0a) 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/classes/testsdk.bbclass')
-rw-r--r--meta/classes/testsdk.bbclass4
1 files changed, 2 insertions, 2 deletions
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):
27 from oeqa.sdk.context import OESDKTestContext, OESDKTestContextExecutor 27 from oeqa.sdk.context import OESDKTestContext, OESDKTestContextExecutor
28 from oeqa.utils import make_logger_bitbake_compatible 28 from oeqa.utils import make_logger_bitbake_compatible
29 29
30 pn = d.getVar("PN", True) 30 pn = d.getVar("PN")
31 logger = make_logger_bitbake_compatible(logging.getLogger("BitBake")) 31 logger = make_logger_bitbake_compatible(logging.getLogger("BitBake"))
32 32
33 # sdk use network for download projects for build 33 # sdk use network for download projects for build
@@ -103,7 +103,7 @@ def testsdkext_main(d):
103 from oeqa.utils import avoid_paths_in_environ, make_logger_bitbake_compatible 103 from oeqa.utils import avoid_paths_in_environ, make_logger_bitbake_compatible
104 from oeqa.sdkext.context import OESDKExtTestContext, OESDKExtTestContextExecutor 104 from oeqa.sdkext.context import OESDKExtTestContext, OESDKExtTestContextExecutor
105 105
106 pn = d.getVar("PN", True) 106 pn = d.getVar("PN")
107 logger = make_logger_bitbake_compatible(logging.getLogger("BitBake")) 107 logger = make_logger_bitbake_compatible(logging.getLogger("BitBake"))
108 108
109 # extensible sdk use network 109 # extensible sdk use network