diff options
author | Holger Freyther <zecke@selfish.org> | 2005-07-26 13:57:48 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-26 13:57:48 +0000 |
commit | e9803751281aeb77114b1e4b83f792fa1d31e7c9 (patch) | |
tree | 6538351ae30daa0d9cd4fc8bb001ae6afa340408 /classes/tinderclient.bbclass | |
parent | 75f80bd6098c69f781f2138a88ea390aff87c008 (diff) |
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.bbclass | 2 |
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 |