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.
This commit is contained in:
Niels Martin Hansen 2019-02-09 19:41:49 +01:00
parent 887e524e06
commit 0151fe998a

View File

@ -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),)