From 7822500e80ce7b25925974b63fa525197c68a434 Mon Sep 17 00:00:00 2001 From: Tony Breeds Date: Tue, 18 Oct 2011 15:06:08 +1100 Subject: [PATCH] make: Add correct quotes to the VERSION define to allow spaces in the version. Signed-off-by: Tony Breeds --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 44cec27..bff8ffe 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ OBJCOPY := $(CROSS)objcopy # The flags for the yaboot binary. # YBCFLAGS = -Os -m32 $(CFLAGS) -nostdinc -Wall -isystem `$(CC) -m32 -print-file-name=include` -fsigned-char -YBCFLAGS += -DVERSION=\"${VERSION}${VERSIONEXTRA}\" #" +YBCFLAGS += -DVERSION="\"${VERSION}${VERSIONEXTRA}\"" YBCFLAGS += -DTEXTADDR=$(TEXTADDR) -DDEBUG=$(DEBUG) YBCFLAGS += -DMALLOCADDR=$(MALLOCADDR) -DMALLOCSIZE=$(MALLOCSIZE) YBCFLAGS += -DKERNELADDR=$(KERNELADDR) -- 2.39.2