From 3ada51f7aa26fc95d5f9ba4498c0ea54acc6e42e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 20 Dec 2013 12:08:56 +0000 Subject: sstate/sstatesig: Add populate_lic to list of arch invariant sstate tasks Like fetch, unpack and patch, populate_lic doesn't vary between different archs so we should mark it as such. This means better sstate cache reuse with fewer duplicate files as well as less confusing sstate debugging. sstatesig also needs to account for the fact BPN is used for sstate files in these cases. (From OE-Core rev: 3d59d0bed756f64d0092caa3892239c779c4a341) Signed-off-by: Richard Purdie --- meta/lib/oe/sstatesig.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/lib/oe/sstatesig.py') diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py index 68e53f661c..3011f16a77 100644 --- a/meta/lib/oe/sstatesig.py +++ b/meta/lib/oe/sstatesig.py @@ -103,6 +103,9 @@ def find_siginfo(pn, taskname, taskhashlist, d): if key.startswith('virtual:native:'): pn = pn + '-native' + if taskname in ['do_fetch', 'do_unpack', 'do_patch', 'do_populate_lic']: + pn.replace("-native", "") + filedates = {} # First search in stamps dir -- cgit v1.2.3-54-g00ecf