[oe-commits] [openembedded-core] 09/14: populate_sdk_ext: Allow generation of meta-extsdk-toolchain even for minimal SDKs

git at git.openembedded.org git at git.openembedded.org
Wed Mar 1 16:12:08 UTC 2017


This is an automated email from the git hooks/post-receive script.

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

commit 6e4ae81d76c5a61e7603ff4ca94452a6e724c244
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed Mar 1 14:47:50 2017 +0000

    populate_sdk_ext: Allow generation of meta-extsdk-toolchain even for minimal SDKs
    
    If you build a minimal eSDK currently, you don't build meta-extesdk-toolchain
    even if you will have built most of its dependencies. This means when you try
    and install a toolchain into the eSDK, it fails, breaking our automated testing
    of the eSDK.
    
    Therefore add the dependency unconditionally even when a minimal eSDK is being
    built and allow the automated testing to work.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/populate_sdk_ext.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index fff0f12..51b98a8 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -649,7 +649,7 @@ python do_sdk_depends() {
 addtask sdk_depends
 
 do_sdk_depends[dirs] = "${WORKDIR}"
-do_sdk_depends[depends] = "${@get_ext_sdk_depends(d)}"
+do_sdk_depends[depends] = "${@get_ext_sdk_depends(d)} meta-extsdk-toolchain:do_populate_sysroot"
 do_sdk_depends[recrdeptask] = "${@d.getVarFlag('do_populate_sdk', 'recrdeptask', False)}"
 do_sdk_depends[recrdeptask] += "do_populate_lic do_package_qa do_populate_sysroot do_deploy ${SDK_RECRDEP_TASKS}"
 do_sdk_depends[rdepends] = "${@get_sdk_ext_rdepends(d)}"

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


More information about the Openembedded-commits mailing list