diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2013-09-06 17:53:20 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-06 22:31:33 +0100 |
commit | 373e2096054d0f6bbeb96e8c6596c495df486160 (patch) | |
tree | df6b953e976c005a72b0e9558b6a1e80056e91fc /bitbake/lib/bb | |
parent | c8957a4fbe8182f8a25c968c04988cebe07f6508 (diff) | |
download | poky-373e2096054d0f6bbeb96e8c6596c495df486160.tar.gz |
bitbake: bitbake: Ensure ${DATE} and ${TIME} are consistent
Due to the worker split the ${DATE} and ${TIME} variables could end up
with different values for different workers.
E.g., a task like do_rootfs that is run within a fakeroot environment
had a slightly different view of the time than another task that was not
fakerooted which made it impossible to correctly refer to the image
generated by do_rootfs from the other task.
(Bitbake rev: 756cc69ebf8bfe8455d0c90f288dd51be2499773)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 8d36f282cc..79e612e032 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -853,6 +853,8 @@ class RunQueue: | |||
853 | "logdefaultdomain" : bb.msg.loggerDefaultDomains, | 853 | "logdefaultdomain" : bb.msg.loggerDefaultDomains, |
854 | "prhost" : self.cooker.prhost, | 854 | "prhost" : self.cooker.prhost, |
855 | "buildname" : self.cfgData.getVar("BUILDNAME", True), | 855 | "buildname" : self.cfgData.getVar("BUILDNAME", True), |
856 | "date" : self.cfgData.getVar("DATE", True), | ||
857 | "time" : self.cfgData.getVar("TIME", True), | ||
856 | } | 858 | } |
857 | 859 | ||
858 | worker.stdin.write("<cookerconfig>" + pickle.dumps(self.cooker.configuration) + "</cookerconfig>") | 860 | worker.stdin.write("<cookerconfig>" + pickle.dumps(self.cooker.configuration) + "</cookerconfig>") |