[oe-commits] [openembedded-core] 30/31: staging: Ensure a clean recipe sysroot removes addto_recipe_sysroot stamps

git at git.openembedded.org git at git.openembedded.org
Sat Jul 8 12:34:40 UTC 2017


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

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

commit c440298674ab3b960c83a127eedb9e1b66bddf78
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri Jul 7 13:12:31 2017 +0100

    staging: Ensure a clean recipe sysroot removes addto_recipe_sysroot stamps
    
    The commands:
    
    bitbake nodejs-native;
    bitbake nodejs-native -c clean;
    bitbake nodejs-native;
    bitbake -c addto_recipe_sysroot nodejs-native;
    bitbake -c devshell nodejs-native;
    bitbake -c addto_recipe_sysroot nodejs-native;
    bitbake -c devshell nodejs-native;
    
    never result in npm in the sysroot within devshell. The reason is the
    addto_recipe_sysroot stamp isn't removed when do_fetch is run but the sysroot
    is cleaned.
    
    With this patch, the second devshell will contain npm, which I think is probably
    the best outcome we can hope for here.
    
    [YOCTO #11461]
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/staging.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index fe82294..8f470d5 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -559,6 +559,9 @@ addtask do_prepare_recipe_sysroot before do_configure after do_fetch
 # Clean out the recipe specific sysroots before do_fetch
 # (use a prefunc so we can order before extend_recipe_sysroot if it gets added)
 python clean_recipe_sysroot() {
+    # We remove these stamps since we're removing any content they'd have added with
+    # cleandirs. This removes the sigdata too, likely not a big deal,
+    oe.path.remove(d.getVar("STAMP") + "*addto_recipe_sysroot*")
     return
 }
 clean_recipe_sysroot[cleandirs] += "${RECIPE_SYSROOT} ${RECIPE_SYSROOT_NATIVE}"

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


More information about the Openembedded-commits mailing list