From 3b83d42b4a65aaaf9d32ed4f3b94e4d05cce4e4a Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Sun, 24 Jan 2016 17:01:07 +0100 Subject: [PATCH] build: fix build when python path contains spaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: /~https://github.com/nodejs/node/pull/4841 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Roman Reiss Reviewed-By: Johan Bergström --- configure | 2 +- node.gyp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 00f20f75d40af8..2287b36f4607cb 100755 --- a/configure +++ b/configure @@ -1102,7 +1102,7 @@ def configure_intl(o): return # end of configure_intl output = { - 'variables': { 'python': sys.executable }, + 'variables': {}, 'include_dirs': [], 'libraries': [], 'defines': [], diff --git a/node.gyp b/node.gyp index 936d4d8a9118bd..cf2c7af5f53144 100644 --- a/node.gyp +++ b/node.gyp @@ -528,7 +528,7 @@ }] ], 'action': [ - '<(python)', + 'python', 'tools/js2c.py', '<@(_outputs)', '<@(_inputs)',