From c07b7837162b9800fdd0deed6f0edde351796989 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sun, 9 Aug 2015 20:53:59 +0200 Subject: genbuild_h: Actually use git's current commit for timestamp if possible The test failed to trigger because top wasn't set. Change-Id: I96de16a1b5cbc5a64d8e65ed84fd6849dd618e8f Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/11147 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- util/genbuild_h/genbuild_h.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/util/genbuild_h/genbuild_h.sh b/util/genbuild_h/genbuild_h.sh index 0a70eb8d1e..a3e44538ab 100755 --- a/util/genbuild_h/genbuild_h.sh +++ b/util/genbuild_h/genbuild_h.sh @@ -26,7 +26,9 @@ export LANG=C export LC_ALL=C export TZ=UTC -if [ -d "${top}/.git" ] && [ -f "$(command -v git)" ]; then +top=`dirname $0`/../.. + +if [ -d "${top}/.git" -a -x "$(command -v git)" ]; then GITREV=$(LANG= git log remotes/origin/master -1 --format=format:%h) TIMESOURCE=git DATE=$(git log --pretty=format:%ct -1) -- cgit v1.2.3