summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-29 09:38:48 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-03-29 23:20:12 +0100
commitb3e4a31cb4e79c601987570d1f49b03fc9781682 (patch)
tree0b57f3f878cff51416b8290421d59cf3e08925ed /meta/lib
parent528a890554339b13b4751d5ffc456b5cbb95be44 (diff)
downloadpoky-b3e4a31cb4e79c601987570d1f49b03fc9781682.tar.gz
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] (From OE-Core rev: 3fab4f9920d004fe13fb01434d4c7f3b8bbd7895) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/sstatesig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 4f115e9dc1..5828a9def8 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):
40 # Only target packages beyond here 40 # Only target packages beyond here
41 41
42 # allarch packagegroups are assumed to have well behaved names which don't change between architecures/tunes 42 # allarch packagegroups are assumed to have well behaved names which don't change between architecures/tunes
43 if isPackageGroup(fn) and isAllArch(fn): 43 if isPackageGroup(fn) and isAllArch(fn) and not isNative(depname):
44 return False 44 return False
45 45
46 # Exclude well defined machine specific configurations which don't change ABI 46 # Exclude well defined machine specific configurations which don't change ABI