Merge pull request #2772 from sysown/v2.1.0-git-version

V2.1.0 Check GIT_VERSION
pull/2779/head
René Cannaò 6 years ago committed by GitHub
commit 0bdaa0b67b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,10 @@
ifndef GIT_VERSION
GIT_VERSION := $(shell git describe --long)
ifndef GIT_VERSION
$(error GIT_VERSION is not set)
endif
endif
O0=-O0
O2=-O2
O1=-O1

@ -1,6 +1,9 @@
ifndef GIT_VERSION
GIT_VERSION := $(shell git describe --long)
ifndef GIT_VERSION
$(error GIT_VERSION is not set)
endif
endif
DEPS_PATH=../deps

@ -1,6 +1,9 @@
ifndef GIT_VERSION
GIT_VERSION := $(shell git describe --long)
ifndef GIT_VERSION
$(error GIT_VERSION is not set)
endif
endif
DEPS_PATH=../deps

Loading…
Cancel
Save