diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-02-27 16:47:53 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-01 22:13:56 +0000 |
commit | 4118603777ca24be0982bb0893d4902d239ca2a4 (patch) | |
tree | d41554863160bc74941bfd2e873f8c591f0a5575 /meta/lib | |
parent | c3582d36697cd6bdf2749ea7c8335a45160a279a (diff) | |
download | poky-4118603777ca24be0982bb0893d4902d239ca2a4.tar.gz |
sstatesig: Move hardcoded native tools
Now that SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS supports the wildcard syntax,
these exclusions no longer need to be hardcoded
(From OE-Core rev: 891ca3c891f2ed5476442442bd9784ba10b9a94d)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index beed45b74f..b82e0f422e 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -29,11 +29,6 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
29 | return False | 29 | return False |
30 | return True | 30 | return True |
31 | 31 | ||
32 | # Quilt (patch application) changing isn't likely to affect anything | ||
33 | excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native', 'icecc-create-env-native'] | ||
34 | if depname in excludelist and recipename != depname: | ||
35 | return False | ||
36 | |||
37 | # Exclude well defined recipe->dependency | 32 | # Exclude well defined recipe->dependency |
38 | if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: | 33 | if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: |
39 | return False | 34 | return False |