[oe-commits] [openembedded-core] 10/20: archiver: preserve sysroot paths in configured mode

git at git.openembedded.org git at git.openembedded.org
Sun Jan 7 17:12:11 UTC 2018


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

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

commit 60f2c790d5e83c1a55d7a40b32a7cef6a5a5eab6
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Tue Jun 6 15:23:18 2017 +0100

    archiver: preserve sysroot paths in configured mode
    
    do_ar_configured alters WORKDIR but also expects to be able to run do_configure,
    so forcibly expand the paths to the sysroots as otherwise they'll point to a
    non-existant directory in the temporary WORKDIR.
    
    [ YOCTO #11584 ]
    
    (From OE-Core rev: aa2240657b015d46e9ba4bcb6264709a82313d83)
    
    (From OE-Core rev: cd5e6172525c7618e93d8255a1d6102a24496f53)
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/archiver.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/archiver.bbclass b/meta/classes/archiver.bbclass
index 82f0b16..18c5b96 100644
--- a/meta/classes/archiver.bbclass
+++ b/meta/classes/archiver.bbclass
@@ -222,6 +222,10 @@ python do_ar_patched() {
 python do_ar_configured() {
     import shutil
 
+    # Forcibly expand the sysroot paths as we're about to change WORKDIR
+    d.setVar('RECIPE_SYSROOT', d.getVar('RECIPE_SYSROOT'))
+    d.setVar('RECIPE_SYSROOT_NATIVE', d.getVar('RECIPE_SYSROOT_NATIVE'))
+
     ar_outdir = d.getVar('ARCHIVER_OUTDIR')
     if d.getVarFlag('ARCHIVER_MODE', 'src') == 'configured':
         bb.note('Archiving the configured source...')

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


More information about the Openembedded-commits mailing list