diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-09 23:16:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-11 09:03:58 +0100 |
commit | fab626cdf387c5b4a4838074294cade1e6129a4f (patch) | |
tree | 45ef4ebd9900b6398b23adab9072b8fab51350fc /meta/classes | |
parent | faaeaf98c790c35c18fd9aadc8257634dc7a1597 (diff) | |
download | poky-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')
-rw-r--r-- | meta/classes/distrodata.bbclass | 2 |
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 | } |
107 | do_distrodata_np[vardepsexclude] = "DATETIME" | ||
107 | 108 | ||
108 | addtask distrodata | 109 | addtask distrodata |
109 | do_distrodata[nostamp] = "1" | 110 | do_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 | } |
200 | do_distrodata[vardepsexclude] = "DATETIME" | ||
199 | 201 | ||
200 | addtask distrodataall after do_distrodata | 202 | addtask distrodataall after do_distrodata |
201 | do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata" | 203 | do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata" |