summaryrefslogtreecommitdiff
path: root/util/genbuild_h/genbuild_h.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/genbuild_h/genbuild_h.sh')
-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 340de3501a..5c45b2b1f8 100755
--- a/util/genbuild_h/genbuild_h.sh
+++ b/util/genbuild_h/genbuild_h.sh
@@ -27,9 +27,9 @@ if [ "${BUILD_TIMELESS}" = "1" ]; then
TIMESOURCE="fixed"
DATE=0
elif [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
- GITREV=$(LANG= git log -1 --format=format:%h)
+ GITREV=$(LANG= git log --no-show-signature -1 --format=format:%h)
TIMESOURCE=git
- DATE=$(git log --pretty=format:%ct -1)
+ DATE=$(git log --no-show-signature --pretty=format:%ct -1)
else
GITREV=Unknown
TIMESOURCE="date"