8000 fix python invocation by dothebart · Pull Request #11142 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

fix python invocation #11142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rdParty/V8/gypfiles/shim_headers.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
'outputs': [
'<!@pymod_do_main(generate_shim_headers <@(generator_args) --outputs)',
],
'action': ['python',
'action': ['<(PYTHON_EXECUTABLE)',
'<(generator_path)',
'<@(generator_args)',
'--generate',
Expand Down
7 changes: 4 additions & 3 deletions 3rdParty/V8/gypfiles/v8.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@
'<(SHARED_INTERMEDIATE_DIR)/src/regexp/special-case.cc',
],
'action': [
'python',
'<(PYTHON_EXECUTABLE)',
'<(V8_ROOT)/tools/run.py',
'<@(_inputs)',
'<@(_outputs)',
Expand Down Expand Up @@ -1510,7 +1510,8 @@
}],
],
'action': [
'python', '<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
'<(PYTHON_EXECUTABLE)',
'<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
'<@(v8_dump_build_config_args)',
],
},
Expand Down Expand Up @@ -1546,7 +1547,7 @@
'<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
],
'action': [
'python',
'<(PYTHON_EXECUTABLE)',
'<(V8_ROOT)/tools/gen-postmortem-metadata.py',
'<@(_outputs)',
'<@(heapobject_files)'
Expand Down
0