Skip to content

Commit 3b83d42

Browse files
felixfbeckerrvagg
authored andcommitted
build: fix build when python path contains spaces
PR-URL: #4841 Reviewed-By: Benjamin Gruenbaum <inglor@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
1 parent c551da8 commit 3b83d42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

configure

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)