gitrev.mk: CFLAGS => CPPFLAGS
This commit is contained in:
parent
7800de9429
commit
2a8368a2de
|
@ -1,9 +1,9 @@
|
||||||
# (c) 2019 Thomas Bernard
|
# (c) 2019-2020 Thomas Bernard
|
||||||
# For GNU Make
|
# For GNU Make
|
||||||
|
|
||||||
ISGITREPO := $(shell git rev-parse --is-inside-work-tree)
|
ISGITREPO := $(shell git rev-parse --is-inside-work-tree)
|
||||||
ifeq ($(ISGITREPO),true)
|
ifeq ($(ISGITREPO),true)
|
||||||
GITREF := $(shell git rev-parse --short HEAD)
|
GITREF := $(shell git rev-parse --short HEAD)
|
||||||
GITBRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
GITBRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
||||||
CFLAGS += -DMINIUPNPD_GIT_REF=\"$(GITBRANCH)-$(GITREF)\"
|
CPPFLAGS += -DMINIUPNPD_GIT_REF=\"$(GITBRANCH)-$(GITREF)\"
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue