From 9ae5e55f4363cf8171c8f06f08f1ee61417d165a Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sat, 31 Dec 2016 18:31:02 -0500 Subject: [PATCH] Makefile escape cmake generator string --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d4eb5672eb..0049b8b272 100755 --- a/Makefile +++ b/Makefile @@ -79,15 +79,15 @@ ifndef NO_NINJA_BUILD endif ifdef NINJA_BUILD - PX4_CMAKE_GENERATOR := "Ninja" + PX4_CMAKE_GENERATOR := Ninja PX4_MAKE := $(NINJA_BIN) PX4_MAKE_ARGS := else ifdef SYSTEMROOT # Windows - PX4_CMAKE_GENERATOR := "MSYS Makefiles" + PX4_CMAKE_GENERATOR := "MSYS\ Makefiles" else - PX4_CMAKE_GENERATOR := "Unix Makefiles" + PX4_CMAKE_GENERATOR := "Unix\ Makefiles" endif PX4_MAKE = $(MAKE) PX4_MAKE_ARGS = -j$(j) --no-print-directory