diff options
Diffstat (limited to 'meta/lib/oe/sstatesig.py')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 4cd1221686..20d94b218b 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -17,10 +17,8 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
17 | return True | 17 | return True |
18 | 18 | ||
19 | # Quilt (patch application) changing isn't likely to affect anything | 19 | # Quilt (patch application) changing isn't likely to affect anything |
20 | if depname == "quilt-native" and recipename != "quilt-native": | 20 | excludelist = ['quilt-native', 'subversion-native', 'git-native'] |
21 | return False | 21 | if depname in excludelist and recipename != depname: |
22 | # Subversion also isn't likely to affect anything | ||
23 | if depname == "subversion-native" and recipename != "subversion-native": | ||
24 | return False | 22 | return False |
25 | 23 | ||
26 | # Don't change native/cross/nativesdk recipe dependencies any further | 24 | # Don't change native/cross/nativesdk recipe dependencies any further |