diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-08-09 20:53:16 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-08-10 18:17:09 +0200 |
commit | f260f51834a8472bba72f4cb3c8af7141be1b697 (patch) | |
tree | 33dffcc4e71e6bb5c0363db33f3ad37d3cfa7402 | |
parent | c983671f3d453c24c07649c056110683491a9da2 (diff) |
genbuild_h: actually make date(1) based timestamp locale independent
This fixes the botched fix in commit d9bc2fadc4ea74ebca0d793aeef288fe9f1acf0c
Change-Id: I0c4445af2851bc80fabb631864321a56123ce7b0
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11146
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rwxr-xr-x | util/genbuild_h/genbuild_h.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/genbuild_h/genbuild_h.sh b/util/genbuild_h/genbuild_h.sh index be72f81f52..0a70eb8d1e 100755 --- a/util/genbuild_h/genbuild_h.sh +++ b/util/genbuild_h/genbuild_h.sh @@ -32,8 +32,8 @@ if [ -d "${top}/.git" ] && [ -f "$(command -v git)" ]; then DATE=$(git log --pretty=format:%ct -1) else GITREV=Unknown - TIMESOURCE="LANG=C LC_ALL=C TZ=UTC date" - DATE=$(date +%s) + TIMESOURCE="date" + DATE=$(LANG= LC_ALL=C TZ=UTC date +%s) fi our_date() { |