From 9a84bcfe4b9821c68322a1a91da9f16d0bd2a4bc Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Fri, 27 Jul 2012 14:54:04 +0200 Subject: [PATCH] Add quotes around APPVERSION to avoid issues when it has spaces. Change-Id: If281c0e37f56f81cb5dd57e264f82fb32bc08d3b --- rbutil/libtools.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rbutil/libtools.make b/rbutil/libtools.make index fda9b68132..2afe4d2af0 100644 --- a/rbutil/libtools.make +++ b/rbutil/libtools.make @@ -24,7 +24,7 @@ TOP := $(dir $(lastword $(MAKEFILE_LIST))) # overwrite for releases APPVERSION ?= $(shell $(TOP)/../tools/version.sh ../) -CFLAGS += -DVERSION=\"$(APPVERSION)\" +CFLAGS += -DVERSION=\""$(APPVERSION)"\" TARGET_DIR ?= $(shell pwd)/ # use POSIX/C99 printf on windows