From 7a2836f0f495cb73972994ddd0e075134679c522 Mon Sep 17 00:00:00 2001 From: Louise Mendoza Date: Tue, 15 Dec 2015 16:29:09 -0600 Subject: [PATCH] Remove quotation marks form CFLAGS. The quotation marks in windows cause the exact interpretation of the text, including the special symbols like '\', that cause problems with the parameter of the toolchain. Change-Id: Ib223ed64b92380419e2fd86b703247ada1a06e34 Signed-off-by: Louise Mendoza --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc b/Makefile.inc index 99923df46e1..f8a980bd4fe 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -48,7 +48,7 @@ else S = -s endif -zephyrmake = @$(MAKE) -C $(ZEPHYR_BASE) O=$(1) CFLAGS="$(CFLAGS)" \ +zephyrmake = @$(MAKE) -C $(ZEPHYR_BASE) O=$(1) CFLAGS=$(CFLAGS) \ PROJECT=$(PROJECT_BASE) SOURCE_DIR=$(SOURCE_DIR) $(2) DOTCONFIG = $(O)/.config