aboutsummaryrefslogtreecommitdiffstats
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-09 23:17:52 +0100
commitc0a701a2165e858ec13b991943cc783bc4186fb9 (patch)
treef4804f786d3db6f73d6c824458230e5242d9053b
parenta11c9fd6e3ca9a76c866f13fcc12b8d2e60a4097 (diff)
downloadopenembedded-core-contrib-c0a701a2165e858ec13b991943cc783bc4186fb9.tar.gz
distrodata: Exclude DATETIME reference from sstate checksum
Otherwise the task hash changes between server and worker context leading to changing task checksums. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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() {
line = line + "," + i
bb.note("%s\n" % line)
}
+do_distrodata_np[vardepsexclude] = "DATETIME"
addtask distrodata
do_distrodata[nostamp] = "1"
@@ -196,6 +197,7 @@ python do_distrodata() {
f.close()
bb.utils.unlockfile(lf)
}
+do_distrodata[vardepsexclude] = "DATETIME"
addtask distrodataall after do_distrodata
do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata"