diff options
author | Ross Burton <ross.burton@intel.com> | 2017-07-10 17:29:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-17 14:01:37 +0100 |
commit | 173760abc66580e21b36eac3a591847e0d3e91f4 (patch) | |
tree | f2d421ddbd0da0d18c683eaf90f995c17d9a51f3 | |
parent | 11f6f7c61798b1edfd51cbba431b30ff285d2854 (diff) | |
download | poky-173760abc66580e21b36eac3a591847e0d3e91f4.tar.gz |
lib/oe/sstatesig: exclude ccache-native from signature hashes
Enabling ccache should not cause a complete rebuild, so filter out ccache-native
from the dependencies the same way we do for quilt-native (so the world doesn't
repatch if quilt changes).
This doesn't effect the actual dependencies, just the dependencies that impact
the hash.
[ YOCTO #11417 ]
(From OE-Core rev: ffeca7dcc1abe82cad8374a31bf72b36a472fa1b)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 b8dd4c869e..5a4093266d 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py | |||
@@ -29,7 +29,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache): | |||
29 | return True | 29 | return True |
30 | 30 | ||
31 | # Quilt (patch application) changing isn't likely to affect anything | 31 | # Quilt (patch application) changing isn't likely to affect anything |
32 | excludelist = ['quilt-native', 'subversion-native', 'git-native'] | 32 | excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native'] |
33 | if depname in excludelist and recipename != depname: | 33 | if depname in excludelist and recipename != depname: |
34 | return False | 34 | return False |
35 | 35 | ||