diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-02-26 21:01:35 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-01 22:13:56 +0000 |
commit | 629619dce7bb536d10af3434425d9da1d398890f (patch) | |
tree | 291706adcebbd9614faf3badfcb3dd4bbe5081a2 /meta/lib/oe/sstatesig.py | |
parent | 6497ebc0d6522dde566acc0ed5cadca837313b82 (diff) | |
download | poky-629619dce7bb536d10af3434425d9da1d398890f.tar.gz |
sstatesig: Ignore icecc-create-env in task sigs
Changes to the icecc-create-env recipe should not cause all recipes to
rebuild just because the have inherited icecc.
(From OE-Core rev: b088a9c34c34c4bda54d93907e04972d3f8ba5a1)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/sstatesig.py')
-rw-r--r-- | meta/lib/oe/sstatesig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 49afed6105..ecb3ebc4c8 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -30,7 +30,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
30 | return True | 30 | return True |
31 | 31 | ||
32 | # Quilt (patch application) changing isn't likely to affect anything | 32 | # Quilt (patch application) changing isn't likely to affect anything |
33 | excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native'] | 33 | excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native', 'icecc-create-env-native'] |
34 | if depname in excludelist and recipename != depname: | 34 | if depname in excludelist and recipename != depname: |
35 | return False | 35 | return False |
36 | 36 | ||