Skip to content

Commit 3b83d42

Browse files
felixfbeckerrvagg
authored andcommittedFeb 9, 2016
build: fix build when python path contains spaces
PR-URL: #4841 Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Johan Bergström <[email protected]>
1 parent c551da8 commit 3b83d42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ def configure_intl(o):
11021102
return # end of configure_intl
11031103

11041104
output = {
1105-
'variables': { 'python': sys.executable },
1105+
'variables': {},
11061106
'include_dirs': [],
11071107
'libraries': [],
11081108
'defines': [],

‎node.gyp

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@
528528
}]
529529
],
530530
'action': [
531-
'<(python)',
531+
'python',
532532
'tools/js2c.py',
533533
'<@(_outputs)',
534534
'<@(_inputs)',

0 commit comments

Comments
 (0)
Please sign in to comment.