aboutsummaryrefslogtreecommitdiffstats
path: root/classes/tinderclient.bbclass
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2005-07-26 13:57:48 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-07-26 13:57:48 +0000
commite9803751281aeb77114b1e4b83f792fa1d31e7c9 (patch)
tree6538351ae30daa0d9cd4fc8bb001ae6afa340408 /classes/tinderclient.bbclass
parent75f80bd6098c69f781f2138a88ea390aff87c008 (diff)
downloadopenembedded-e9803751281aeb77114b1e4b83f792fa1d31e7c9.tar.gz
openembedded/classes/tinderclient.bbclass:
-Use the BUILDSTART as the starttime for the tinderbox. In every none malicious bbfile this variable should have the same time.
Diffstat (limited to 'classes/tinderclient.bbclass')
-rw-r--r--classes/tinderclient.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass
index 869cd043ba..4f3c495078 100644
--- a/classes/tinderclient.bbclass
+++ b/classes/tinderclient.bbclass
@@ -7,7 +7,7 @@ def base_prepare_mail_header(data, status):
import bb
str = "tinderbox: administrator: %s\n" % bb.data.getVar('TINDER_ADMIN', data, True)
- str += "tinderbox: starttime: %s\n" % bb.data.getVar('TINDER_START', data, True)
+ str += "tinderbox: starttime: %s\n" % bb.data.getVar('BUILDSTART', data, True) or bb.data.getVar('TINDER_START', data, True)
str += "tinderbox: buildname: %s\n" % bb.data.getVar('TINDER_BUILD', data, True)
str += "tinderbox: errorparser: %s\n" % bb.data.getVar('TINDER_ERROR', data, True)
str += "tinderbox: status: %s\n" % status