[oe-commits] [openembedded-core] 14/14: externalsrc.bbclass: Set BB_DONT_CACHE for non-target recipes

git at git.openembedded.org git at git.openembedded.org
Thu Oct 18 10:10:28 UTC 2018


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

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

commit 30b055d2296f060a4ca054d042f353a2153fdd4e
Author: Ola x Nilsson <ola.x.nilsson at axis.com>
AuthorDate: Thu Oct 4 12:43:28 2018 +0200

    externalsrc.bbclass: Set BB_DONT_CACHE for non-target recipes
    
    BB_DONT_CACHE was not set for non-virtual recipes where PN != BPN, such
    as quilt-native.  Recipes that do not set BBCLASSEXTEND should always
    have BB_DONT_CACHE set by externalsrc.
    
    (From OE-Core rev: 4eff427a0ee629a1541a420a9591411648569a97)
    
    Signed-off-by: Ola x Nilsson <olani at axis.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/classes/externalsrc.bbclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass
index c9f5cf7..78a08c8 100644
--- a/meta/classes/externalsrc.bbclass
+++ b/meta/classes/externalsrc.bbclass
@@ -41,8 +41,8 @@ python () {
     # re-parsed so that the file-checksums function for do_compile is run every
     # time.
     bpn = d.getVar('BPN')
-    if bpn == d.getVar('PN'):
-        classextend = (d.getVar('BBCLASSEXTEND') or '').split()
+    classextend = (d.getVar('BBCLASSEXTEND') or '').split()
+    if bpn == d.getVar('PN') or not classextend:
         if (externalsrc or
                 ('native' in classextend and
                  d.getVar('EXTERNALSRC_pn-%s-native' % bpn)) or

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


More information about the Openembedded-commits mailing list