summaryrefslogtreecommitdiffstats
path: root/util/genbuild_h
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2015-08-09 20:53:16 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-08-10 18:17:09 +0200
commitf260f51834a8472bba72f4cb3c8af7141be1b697 (patch)
tree33dffcc4e71e6bb5c0363db33f3ad37d3cfa7402 /util/genbuild_h
parentc983671f3d453c24c07649c056110683491a9da2 (diff)
downloadcoreboot-f260f51834a8472bba72f4cb3c8af7141be1b697.tar.gz
coreboot-f260f51834a8472bba72f4cb3c8af7141be1b697.tar.bz2
coreboot-f260f51834a8472bba72f4cb3c8af7141be1b697.zip
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>
Diffstat (limited to 'util/genbuild_h')
-rwxr-xr-xutil/genbuild_h/genbuild_h.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/genbuild_h/genbuild_h.sh b/util/genbuild_h/genbuild_h.sh
index be72f81f528f..0a70eb8d1ee8 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() {