[oe-commits] [openembedded-core] 02/11: sstatesig: Ensure we keep native depends for allarch recipes

git at git.openembedded.org git at git.openembedded.org
Tue Mar 29 12:01:33 UTC 2016


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

commit 3fab4f9920d004fe13fb01434d4c7f3b8bbd7895
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Mar 29 09:38:48 2016 +0100

    sstatesig: Ensure we keep native depends for allarch recipes
    
    Without this, do_package_write_rpm doesn't depend on rpm-native which
    it really should since that is needed to build rpms.
    
    [YOCTO #8047]
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 4f115e9..5828a9d 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -40,7 +40,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
     # Only target packages beyond here
 
     # allarch packagegroups are assumed to have well behaved names which don't change between architecures/tunes
-    if isPackageGroup(fn) and isAllArch(fn):
+    if isPackageGroup(fn) and isAllArch(fn) and not isNative(depname):
         return False  
 
     # Exclude well defined machine specific configurations which don't change ABI

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


More information about the Openembedded-commits mailing list