From 16dea2ee094d8c236d35cca69623014151cc4221 Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Wed, 3 Feb 2016 17:26:24 +0100 Subject: [PATCH] Fixed: Allow build in directory with space in path --- Objective-J/Jakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/Jakefile b/Objective-J/Jakefile index 2c83a5562..5c5ef03ca 100644 --- a/Objective-J/Jakefile +++ b/Objective-J/Jakefile @@ -32,7 +32,7 @@ $BROWSER_FILE = FILE.join("Browser", "Objective-J.js"); $BUILD_OBJECTIVE_J = FILE.join($BUILD_CONFIGURATION_DIR, "Objective-J"); $BUILD_BROWSER_FILE = FILE.join($BUILD_OBJECTIVE_J, "Objective-J.js"); -$INCLUDE_FLAGS = ["-I" + FILE.cwd()]; +$INCLUDE_FLAGS = ["'-I" + FILE.cwd() + "'"]; $DEBUG_FLAGS = $CONFIGURATION === "Debug" ? ["-DDEBUG=1"] : [""]; $OBJECTIVEJ_FILES = new FileList("*.js");