* check if git executable really exists

This commit is contained in:
florian 2021-08-21 20:36:29 +02:00 committed by Michaël Van Canneyt
parent 848bd3e0c0
commit b4f939a4ab
2 changed files with 6 additions and 2 deletions

View File

@ -461,7 +461,9 @@ ifdef SOURCE_DATE_EPOCH
else
GIT_DIR = $(wildcard ../.git)
ifneq ($(GIT_DIR),)
COMPDATESTR:=$(shell $(GIT) log -1 --pretty=%cd --date=format:'%Y/%m/%d')
ifneq ($(GIT),)
COMPDATESTR:=$(shell $(GIT) log -1 --pretty=%cd --date=format:'%Y/%m/%d')
endif
endif
endif
ifdef COMPDATESTR

View File

@ -182,7 +182,9 @@ else
GIT_DIR = $(wildcard ../.git)
ifneq ($(GIT_DIR),)
# ... then take date from head
COMPDATESTR:=$(shell $(GIT) log -1 --pretty=%cd --date=format:'%Y/%m/%d')
ifneq ($(GIT),)
COMPDATESTR:=$(shell $(GIT) log -1 --pretty=%cd --date=format:'%Y/%m/%d')
endif
endif
endif