[oe-commits] [openembedded-core] 08/64: lib/oe/sstatesig: exclude ccache-native from signature hashes

git at git.openembedded.org git at git.openembedded.org
Mon Jul 17 13:02:17 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit ffeca7dcc1abe82cad8374a31bf72b36a472fa1b
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Mon Jul 10 17:29:58 2017 +0100

    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 ]
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index b8dd4c8..5a40932 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):
         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
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list