From 7c36336c6f94d49bdfdf5cbf0c09e353c79534a4 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 10 Nov 2014 09:54:25 -0800 Subject: [PATCH] mk: Fix configuration of version commit information Commit bec2ee77f78b4bb8a503101091272a634a273a1c started quoting paths discovered as part of the `probe` function, which includes git. The `make` `wildcard` function appears to be incompatible with quoted paths so this check in the makefile now fails. Employing `wildcard` here appears to only re-verify that git actually exists, which the configure script already did, so I've just removed it. Additionally, with the quoted paths the `subst` function should no longer be needed, so I've removed it as well. Closes #18771 --- mk/main.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/main.mk b/mk/main.mk index aba02088eabe6..3df4d3bfa5ec6 100644 --- a/mk/main.mk +++ b/mk/main.mk @@ -52,7 +52,7 @@ CFG_GIT_DIR := $(CFG_SRC_DIR).git # so we use a hack: define $(SPACE) which contains space character. SPACE := SPACE += -ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT))),) +ifneq ($(CFG_GIT),) ifneq ($(wildcard $(subst $(SPACE),\$(SPACE),$(CFG_GIT_DIR))),) CFG_VER_DATE = $(shell git --git-dir='$(CFG_GIT_DIR)' log -1 --pretty=format:'%ci') CFG_VER_HASH = $(shell git --git-dir='$(CFG_GIT_DIR)' rev-parse HEAD)