diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-01-26 14:26:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:43:02 +0000 |
commit | e2280b9e12f625b4aa55dba86e68046a55326a8a (patch) | |
tree | efc8f97ab7cc624e812f1d6c2946f919f71efcf0 /meta/classes/populate_sdk_base.bbclass | |
parent | 8b448ab0127cfc79df8ce601e2e8b93179ebbcbc (diff) | |
download | poky-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/populate_sdk_base.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 2b5aa1703c..dd3cac5d69 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass | |||
@@ -72,7 +72,7 @@ python write_target_sdk_manifest () { | |||
72 | 72 | ||
73 | python write_sdk_test_data() { | 73 | python write_sdk_test_data() { |
74 | from oe.data import export2json | 74 | from oe.data import export2json |
75 | testdata = "%s/%s.testdata.json" % (d.getVar('SDKDEPLOYDIR', True), d.getVar('TOOLCHAIN_OUTPUTNAME', True)) | 75 | testdata = "%s/%s.testdata.json" % (d.getVar('SDKDEPLOYDIR'), d.getVar('TOOLCHAIN_OUTPUTNAME')) |
76 | bb.utils.mkdirhier(os.path.dirname(testdata)) | 76 | bb.utils.mkdirhier(os.path.dirname(testdata)) |
77 | export2json(d, testdata) | 77 | export2json(d, testdata) |
78 | } | 78 | } |