From 3d99c6661a40a24989910095bbe9698f2121ed44 Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Sun, 24 Jan 2016 17:01:07 +0100 Subject: [PATCH] Fix build when Python path contains space --- 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 672c3ce6691b9f..cb9317584fb2c3 100644 --- a/node.gyp +++ b/node.gyp @@ -525,7 +525,7 @@ }] ], 'action': [ - '<(python)', + 'python', 'tools/js2c.py', '<@(_outputs)', '<@(_inputs)',