Browse Source

build: fix build when python path contains spaces

PR-URL: https://github.com/nodejs/node/pull/4841
Reviewed-By: Benjamin Gruenbaum <inglor@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
v4.x
Felix Becker 9 years ago
committed by Myles Borins
parent
commit
c0facfbfe6
  1. 2
      configure
  2. 2
      node.gyp

2
configure

@ -1085,7 +1085,7 @@ def configure_intl(o):
return # end of configure_intl return # end of configure_intl
output = { output = {
'variables': { 'python': sys.executable }, 'variables': {},
'include_dirs': [], 'include_dirs': [],
'libraries': [], 'libraries': [],
'defines': [], 'defines': [],

2
node.gyp

@ -519,7 +519,7 @@
}] }]
], ],
'action': [ 'action': [
'<(python)', 'python',
'tools/js2c.py', 'tools/js2c.py',
'<@(_outputs)', '<@(_outputs)',
'<@(_inputs)', '<@(_inputs)',

Loading…
Cancel
Save