From 2afa37e7ef279733d9d334a934a168cbecf13806 Mon Sep 17 00:00:00 2001 From: Mateusz Czeladka Date: Fri, 23 Jun 2017 10:43:13 +0200 Subject: [PATCH] Fixes #286 --- build_system/config_macos.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build_system/config_macos.py b/build_system/config_macos.py index 948129cbb..412a38b19 100644 --- a/build_system/config_macos.py +++ b/build_system/config_macos.py @@ -35,8 +35,8 @@ def build_node_js(config): #----------------------------------------------------------------------- def build_j2v8_cmake(config): return \ - u.shell("mkdir", "cmake.out/$PLATFORM.$ARCH") + \ - ["cd cmake.out/$PLATFORM.$ARCH"] + \ + u.shell("mkdir", "./cmake.out/$PLATFORM.$ARCH") + \ + ["cd ./cmake.out/$PLATFORM.$ARCH"] + \ u.shell("rm", "CMakeCache.txt CMakeFiles/") + \ ["cmake ../../"] @@ -44,7 +44,7 @@ def build_j2v8_cmake(config): #----------------------------------------------------------------------- def build_j2v8_jni(config): return [ - "cd cmake.out/$PLATFORM.$ARCH", + "cd ./cmake.out/$PLATFORM.$ARCH", "make -j4", ]