genbuild_h: actually make date(1) based timestamp locale independent

This fixes the botched fix in commit d9bc2fadc4

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>
This commit is contained in:
Patrick Georgi 2015-08-09 20:53:16 +02:00 committed by Patrick Georgi
parent c983671f3d
commit f260f51834
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ if [ -d "${top}/.git" ] && [ -f "$(command -v git)" ]; then
DATE=$(git log --pretty=format:%ct -1) DATE=$(git log --pretty=format:%ct -1)
else else
GITREV=Unknown GITREV=Unknown
TIMESOURCE="LANG=C LC_ALL=C TZ=UTC date" TIMESOURCE="date"
DATE=$(date +%s) DATE=$(LANG= LC_ALL=C TZ=UTC date +%s)
fi fi
our_date() { our_date() {