summaryrefslogtreecommitdiffstats
path: root/meta/classes/distrodata.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-09 23:16:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-11 09:03:58 +0100
commitfab626cdf387c5b4a4838074294cade1e6129a4f (patch)
tree45ef4ebd9900b6398b23adab9072b8fab51350fc /meta/classes/distrodata.bbclass
parentfaaeaf98c790c35c18fd9aadc8257634dc7a1597 (diff)
downloadpoky-fab626cdf387c5b4a4838074294cade1e6129a4f.tar.gz
distrodata: Exclude DATETIME reference from sstate checksum
Otherwise the task hash changes between server and worker context leading to changing task checksums. (From OE-Core rev: c0a701a2165e858ec13b991943cc783bc4186fb9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/distrodata.bbclass')
-rw-r--r--meta/classes/distrodata.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass
index 44c06e1481..51bfc1e54d 100644
--- a/meta/classes/distrodata.bbclass
+++ b/meta/classes/distrodata.bbclass
@@ -104,6 +104,7 @@ python do_distrodata_np() {
104 line = line + "," + i 104 line = line + "," + i
105 bb.note("%s\n" % line) 105 bb.note("%s\n" % line)
106} 106}
107do_distrodata_np[vardepsexclude] = "DATETIME"
107 108
108addtask distrodata 109addtask distrodata
109do_distrodata[nostamp] = "1" 110do_distrodata[nostamp] = "1"
@@ -196,6 +197,7 @@ python do_distrodata() {
196 f.close() 197 f.close()
197 bb.utils.unlockfile(lf) 198 bb.utils.unlockfile(lf)
198} 199}
200do_distrodata[vardepsexclude] = "DATETIME"
199 201
200addtask distrodataall after do_distrodata 202addtask distrodataall after do_distrodata
201do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata" 203do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata"