8000 fix python invocation (#11142) · arangodb/arangodb@e3e9513 · GitHub
[go: up one dir, main page]

Skip to content

Commit e3e9513

Browse files
authored
fix python invocation (#11142)
1 parent 6147230 commit e3e9513

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

3rdParty/V8/gypfiles/shim_headers.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
'outputs': [
6363
'<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)',
6464
],
65-
'action': ['python',
65+
'action': ['<(PYTHON_EXECUTABLE)',
6666
'<(generator_path)',
6767
'<@(generator_args)',
6868
'--generate',

3rdParty/V8/gypfiles/v8.gyp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@
14081408
'<(SHARED_INTERMEDIATE_DIR)/src/regexp/special-case.cc',
14091409
],
14101410
'action': [
1411-
'python',
1411+
'<(PYTHON_EXECUTABLE)',
14121412
'<(V8_ROOT)/tools/run.py',
14131413
'<@(_inputs)',
14141414
'<@(_outputs)',
@@ -1510,7 +1510,8 @@
15101510
}],
15111511
],
15121512
'action': [
1513-
'python', '<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
1513+
'<(PYTHON_EXECUTABLE)',
1514+
'<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
15141515
'<@(v8_dump_build_config_args)',
15151516
],
15161517
},
@@ -1546,7 +1547,7 @@
15461547
'<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
15471548
],
15481549
'action': [
1549-
'python',
1550+
'<(PYTHON_EXECUTABLE)',
15501551
'<(V8_ROOT)/tools/gen-postmortem-metadata.py',
15511552
'<@(_outputs)',
15521553
'<@(heapobject_files)'

0 commit comments

Comments
 (0)
0