From f68b39b9226067292a58c86f1bd41a85924ebfef Mon Sep 17 00:00:00 2001 From: Christian Jullien Date: Wed, 31 Mar 2021 23:15:47 +0200 Subject: [PATCH] Surround hash code with double quotes --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1d5e7170..97527f0b 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ VPATH = $(TOPSRC) TCC_GIT_HASH=$(shell git rev-parse > /dev/null 2>&1 && git rev-parse --short HEAD || echo no) ifneq ($(TCC_GIT_HASH),no) - CFLAGS += -DTCC_GIT_HASH=\"$(TCC_GIT_HASH)\" + CFLAGS += -DTCC_GIT_HASH="\"$(TCC_GIT_HASH)\"" endif ifdef CONFIG_WIN32