diff options
author | Andrew Geissler <andrewg@us.ibm.com> | 2015-02-09 11:04:22 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-02-09 17:10:53 -0600 |
commit | f35c07d81bb3326e76146b6debb719d9296ca51a (patch) | |
tree | 6a528c94d562becc17462c337dc9dbaaa28b06f3 /src/build/trace | |
parent | 6c30c657b02d720f38f655284e4c4d4ca85f02b0 (diff) | |
download | talos-hostboot-f35c07d81bb3326e76146b6debb719d9296ca51a.tar.gz talos-hostboot-f35c07d81bb3326e76146b6debb719d9296ca51a.zip |
Change tracehash_hb.pl to use gmtime
Change-Id: Ibf265ff9c6de2ce8df03e903452553237a877dbb
RTC: 123496
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/15618
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/build/trace')
-rwxr-xr-x | src/build/trace/tracehash_hb.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/build/trace/tracehash_hb.pl b/src/build/trace/tracehash_hb.pl index aa125893b..9163be7a5 100755 --- a/src/build/trace/tracehash_hb.pl +++ b/src/build/trace/tracehash_hb.pl @@ -6,7 +6,9 @@ # # OpenPOWER HostBoot Project # -# COPYRIGHT International Business Machines Corp. 2011,2014 +# Contributors Listed Below - COPYRIGHT 2011,2015 +# [+] International Business Machines Corp. +# # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -164,7 +166,7 @@ if (!$file && !$dir && !$in_sand) { # M A I N # ################################# -my $clock = `date`; +my $clock = gmtime; $build = $HEAD_EYE_CATCHER . "$HEAD_VER_FLAG" . $HEAD_SEP . $clock . $HEAD_SEP . $HEAD_BUILD_FLAG; |