remove debug print in Makefile
This commit is contained in:
parent
314cb348c4
commit
fdd0057ffc
1
Makefile
1
Makefile
|
@ -126,7 +126,6 @@ endif
|
||||||
# Stuff for showing the git hash in the intro on nightly builds
|
# Stuff for showing the git hash in the intro on nightly builds
|
||||||
# From https://stackoverflow.com/questions/44038428/include-git-commit-hash-and-or-branch-name-in-c-c-source
|
# From https://stackoverflow.com/questions/44038428/include-git-commit-hash-and-or-branch-name-in-c-c-source
|
||||||
ifeq ($(shell git rev-parse --abbrev-ref HEAD),nightly)
|
ifeq ($(shell git rev-parse --abbrev-ref HEAD),nightly)
|
||||||
$(info Hello Caldera!!! I'm here all week!)
|
|
||||||
GIT_HASH=`git rev-parse --short HEAD`
|
GIT_HASH=`git rev-parse --short HEAD`
|
||||||
COMPILE_TIME=`date -u +'%Y-%m-%d %H:%M:%S UTC'`
|
COMPILE_TIME=`date -u +'%Y-%m-%d %H:%M:%S UTC'`
|
||||||
VERSION_CFLAGS += -DNIGHTLY -DGIT_HASH="\"$(GIT_HASH)\"" -DCOMPILE_TIME="\"$(COMPILE_TIME)\""
|
VERSION_CFLAGS += -DNIGHTLY -DGIT_HASH="\"$(GIT_HASH)\"" -DCOMPILE_TIME="\"$(COMPILE_TIME)\""
|
||||||
|
|
Loading…
Reference in New Issue