[oe-commits] [openembedded-core] 03/43: base.bbclass, staging.bbclass: Move prepare_recipe_sysroot task dependency

git at git.openembedded.org git at git.openembedded.org
Tue Apr 2 19:18:25 UTC 2019


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 e95f00c5eba2dc9cf29e61d06df6204c347e9ef8
Author: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
AuthorDate: Tue Apr 2 20:38:10 2019 +0200

    base.bbclass, staging.bbclass: Move prepare_recipe_sysroot task dependency
    
    Move prepare_recipe_sysroot's task dependency on populate_sysroot from
    base.bbclass (where it was specified in the middle of do_configure's
    definition) to staging.bbclass (where the rest of
    do_prepare_recipe_sysroot is defined). This was a left-over from when
    recipe specific sysroots were introduced in commit 809746f5 and the
    task dependency on populate_sysroot was moved from do_configure to
    do_prepare_recipe_sysroot.
    
    Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt at axis.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/base.bbclass    | 1 -
 meta/classes/staging.bbclass | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 8ece51f..d0b82d7 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -310,7 +310,6 @@ CLEANBROKEN = "0"
 
 addtask configure after do_patch
 do_configure[dirs] = "${B}"
-do_prepare_recipe_sysroot[deptask] = "do_populate_sysroot"
 base_do_configure() {
 	if [ -n "${CONFIGURESTAMPFILE}" -a -e "${CONFIGURESTAMPFILE}" ]; then
 		if [ "`cat ${CONFIGURESTAMPFILE}`" != "${BB_TASKHASH}" ]; then
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index c9bcd74..062b281 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -577,6 +577,7 @@ python extend_recipe_sysroot() {
 }
 extend_recipe_sysroot[vardepsexclude] += "MACHINE_ARCH PACKAGE_EXTRA_ARCHS SDK_ARCH BUILD_ARCH SDK_OS BB_TASKDEPDATA"
 
+do_prepare_recipe_sysroot[deptask] = "do_populate_sysroot"
 python do_prepare_recipe_sysroot () {
     bb.build.exec_func("extend_recipe_sysroot", d)
 }

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


More information about the Openembedded-commits mailing list