Skip to content

Commit 3d99c66

Browse files
committed
Fix build when Python path contains space
1 parent f19b9d6 commit 3d99c66

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
@@ -525,7 +525,7 @@
525525
}]
526526
],
527527
'action': [
528-
'<(python)',
528+
'python',
529529
'tools/js2c.py',
530530
'<@(_outputs)',
531531
'<@(_inputs)',

0 commit comments

Comments
 (0)