Skip to content

Commit 7e5ffd6

Browse files
felixfbeckerMyles Borins
authored and
Myles Borins
committed
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 298f48a commit 7e5ffd6

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
@@ -1085,7 +1085,7 @@ def configure_intl(o):
10851085
return # end of configure_intl
10861086

10871087
output = {
1088-
'variables': { 'python': sys.executable },
1088+
'variables': {},
10891089
'include_dirs': [],
10901090
'libraries': [],
10911091
'defines': [],

node.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@
519519
}]
520520
],
521521
'action': [
522-
'<(python)',
522+
'python',
523523
'tools/js2c.py',
524524
'<@(_outputs)',
525525
'<@(_inputs)',

0 commit comments

Comments
 (0)