diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 40f99744fb..acff2a0569 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -26,6 +26,10 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
26 | if depname in excludelist and recipename != depname: | 26 | if depname in excludelist and recipename != depname: |
27 | return False | 27 | return False |
28 | 28 | ||
29 | # Exclude well defined recipe->dependency | ||
30 | if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: | ||
31 | return False | ||
32 | |||
29 | # Don't change native/cross/nativesdk recipe dependencies any further | 33 | # Don't change native/cross/nativesdk recipe dependencies any further |
30 | if isNative(recipename) or isCross(recipename) or isNativeSDK(recipename): | 34 | if isNative(recipename) or isCross(recipename) or isNativeSDK(recipename): |
31 | return True | 35 | return True |
@@ -40,10 +44,6 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
40 | if depname in siggen.abisaferecipes and not isImage(fn): | 44 | if depname in siggen.abisaferecipes and not isImage(fn): |
41 | return False | 45 | return False |
42 | 46 | ||
43 | # Exclude well defined recipe->dependency | ||
44 | if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: | ||
45 | return False | ||
46 | |||
47 | # Kernel modules are well namespaced. We don't want to depend on the kernel's checksum | 47 | # Kernel modules are well namespaced. We don't want to depend on the kernel's checksum |
48 | # if we're just doing an RRECOMMENDS_xxx = "kernel-module-*", not least because the checksum | 48 | # if we're just doing an RRECOMMENDS_xxx = "kernel-module-*", not least because the checksum |
49 | # is machine specific. | 49 | # is machine specific. |