Skip to content

Commit f2a4def

Browse files
gengjiawendanielleadams
authored andcommitted
build: make scripts in gyp run with right python
PR-URL: #45435 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
1 parent 55b64e0 commit f2a4def

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

node.gyp

+1-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@
438438
'inputs': [ '<(opensslconfig)', ],
439439
'outputs': [ '<(opensslconfig_internal)', ],
440440
'action': [
441-
'python', 'tools/copyfile.py',
441+
'<(python)', 'tools/copyfile.py',
442442
'<(opensslconfig)',
443443
'<(opensslconfig_internal)',
444444
],

tools/v8_gypfiles/v8.gyp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1782,7 +1782,7 @@
17821782
}],
17831783
],
17841784
'action': [
1785-
'python', '<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
1785+
'<(python)', '<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
17861786
'<@(v8_dump_build_config_args)',
17871787
],
17881788
},
@@ -1876,7 +1876,7 @@
18761876
'<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
18771877
],
18781878
'action': [
1879-
'python',
1879+
'<(python)',
18801880
'<(V8_ROOT)/tools/gen-postmortem-metadata.py',
18811881
'<@(_outputs)',
18821882
'<@(heapobject_files)'

0 commit comments

Comments
 (0)