[oe-commits] [openembedded-core] 02/02: populate_sdk_base.bbclass: fix broken variables

git at git.openembedded.org git at git.openembedded.org
Tue Sep 27 21:29:29 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit daf23ecd2d1771fd74e48bbdc2a667bec064a468
Author: Ioan-Adrian Ratiu <adrian.ratiu at ni.com>
AuthorDate: Tue Sep 27 17:40:11 2016 +0300

    populate_sdk_base.bbclass: fix broken variables
    
    This function never worked because the SDK_OUTPUT and SDKPATH vars are
    written bash-style in a python function. The only reason it never failed
    a build is because the function bails out the start because of the flag
    CHECK_SDK_SYSROOTS.
    
    And I guess nobody tested with CHECK_SDK_SYSROOTS enabled until now.
    
    Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu at ni.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/populate_sdk_base.bbclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass
index ce12f27..a23775e 100644
--- a/meta/classes/populate_sdk_base.bbclass
+++ b/meta/classes/populate_sdk_base.bbclass
@@ -147,7 +147,8 @@ python check_sdk_sysroots() {
         return os.path.abspath(path)
 
     # Get scan root
-    SCAN_ROOT = norm_path("${SDK_OUTPUT}/${SDKPATH}/sysroots/")
+    SCAN_ROOT = norm_path("%s/%s/sysroots/" % (d.getVar('SDK_OUTPUT', True),
+                                               d.getVar('SDKPATH', True)))
 
     bb.note('Checking SDK sysroots at ' + SCAN_ROOT)
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list