mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
11f6f7c617
commit
173760abc6
@@ -29,7 +29,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
|
||||
return True
|
||||
|
||||
# Quilt (patch application) changing isn't likely to affect anything
|
||||
excludelist = ['quilt-native', 'subversion-native', 'git-native']
|
||||
excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native']
|
||||
if depname in excludelist and recipename != depname:
|
||||
return False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user