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>
This commit is contained in:
Richard Purdie 2016-04-09 23:16:09 +01:00
parent faaeaf98c7
commit fab626cdf3
1 changed files with 2 additions and 0 deletions

View File

@ -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"