summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/sstatesig.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index f087a019e1..b8dd4c869e 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -20,8 +20,12 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
20 def isImage(fn): 20 def isImage(fn):
21 return "/image.bbclass" in " ".join(dataCache.inherits[fn]) 21 return "/image.bbclass" in " ".join(dataCache.inherits[fn])
22 22
23 # Always include our own inter-task dependencies 23 # (Almost) always include our own inter-task dependencies.
24 # The exception is the special do_kernel_configme->do_unpack_and_patch
25 # dependency from archiver.bbclass.
24 if recipename == depname: 26 if recipename == depname:
27 if task == "do_kernel_configme" and dep.endswith(".do_unpack_and_patch"):
28 return False
25 return True 29 return True
26 30
27 # Quilt (patch application) changing isn't likely to affect anything 31 # Quilt (patch application) changing isn't likely to affect anything