From 0151fe998a999b48b67afa5b96d9a4cd72246455 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sat, 9 Feb 2019 19:41:49 +0100 Subject: [PATCH] Fix 5f8354f3: Non-Windows builds did not get correct git hash Effect is that gamelog and network revisions indicate a git revision of 0, potentially causing issues. --- Makefile.src.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.src.in b/Makefile.src.in index 9cf3557c56..94534fd60f 100644 --- a/Makefile.src.in +++ b/Makefile.src.in @@ -90,7 +90,7 @@ MODIFIED := $(shell echo "$(VERSIONS)" | cut -f 3 -d' ') # Use autodetected revisions VERSION := $(shell echo "$(VERSIONS)" | cut -f 1 -d' ') ISODATE := $(shell echo "$(VERSIONS)" | cut -f 2 -d' ') -GITHASH := $(shell echo "$(VERSIONS)" | cut -f 3 -d' ') +GITHASH := $(shell echo "$(VERSIONS)" | cut -f 4 -d' ') # Make sure we have something in VERSION and ISODATE ifeq ($(VERSION),)