diff options
-rw-r--r-- | meta/lib/oe/sstatesig.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 8b0e344501..aa25c3a10e 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -10,12 +10,12 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
10 | return x.startswith("nativesdk-") | 10 | return x.startswith("nativesdk-") |
11 | def isKernel(fn): | 11 | def isKernel(fn): |
12 | inherits = " ".join(dataCache.inherits[fn]) | 12 | inherits = " ".join(dataCache.inherits[fn]) |
13 | return inherits.find("module-base.bbclass") != -1 or inherits.find("linux-kernel-base.bbclass") != -1 | 13 | return inherits.find("/module-base.bbclass") != -1 or inherits.find("/linux-kernel-base.bbclass") != -1 |
14 | def isPackageGroup(fn): | 14 | def isPackageGroup(fn): |
15 | inherits = " ".join(dataCache.inherits[fn]) | 15 | inherits = " ".join(dataCache.inherits[fn]) |
16 | return "packagegroup.bbclass" in inherits | 16 | return "/packagegroup.bbclass" in inherits |
17 | def isImage(fn): | 17 | def isImage(fn): |
18 | return "image.bbclass" in " ".join(dataCache.inherits[fn]) | 18 | return "/image.bbclass" in " ".join(dataCache.inherits[fn]) |
19 | 19 | ||
20 | # Always include our own inter-task dependencies | 20 | # Always include our own inter-task dependencies |
21 | if recipename == depname: | 21 | if recipename == depname: |