From: Tony Breeds Date: Tue, 18 Oct 2011 04:06:08 +0000 (+1100) Subject: make: Add correct quotes to the VERSION define to allow spaces in the version. X-Git-Tag: yaboot-1.3.17~12 X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=commitdiff_plain;h=7822500e80ce7b25925974b63fa525197c68a434 make: Add correct quotes to the VERSION define to allow spaces in the version. Signed-off-by: Tony Breeds --- 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)