Change git_version parsing to standardize across OS versions

pull/3314/head
Nick Vyzas 5 years ago
parent 5f269af2b2
commit ab3b0494fe

@ -1,5 +1,5 @@
ifndef GIT_VERSION
GIT_VERSION := $(shell git describe --long)
GIT_VERSION := $(shell git describe --long --abbrev=7)
ifndef GIT_VERSION
$(error GIT_VERSION is not set)
endif

@ -1,5 +1,5 @@
ifndef GIT_VERSION
GIT_VERSION := $(shell git describe --long)
GIT_VERSION := $(shell git describe --long --abbrev=7)
ifndef GIT_VERSION
$(error GIT_VERSION is not set)
endif

@ -1,5 +1,5 @@
ifndef GIT_VERSION
GIT_VERSION := $(shell git describe --long)
GIT_VERSION := $(shell git describe --long --abbrev=7)
ifndef GIT_VERSION
$(error GIT_VERSION is not set)
endif

Loading…
Cancel
Save