Skip to content

Commit

Permalink
build: make scripts in gyp run with right python
Browse files Browse the repository at this point in the history
PR-URL: #45435
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org>
  • Loading branch information
gengjiawen authored and danielleadams committed Jan 3, 2023
1 parent 55b64e0 commit f2a4def
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node.gyp
Expand Up @@ -438,7 +438,7 @@
'inputs': [ '<(opensslconfig)', ],
'outputs': [ '<(opensslconfig_internal)', ],
'action': [
'python', 'tools/copyfile.py',
'<(python)', 'tools/copyfile.py',
'<(opensslconfig)',
'<(opensslconfig_internal)',
],
Expand Down
4 changes: 2 additions & 2 deletions tools/v8_gypfiles/v8.gyp
Expand Up @@ -1782,7 +1782,7 @@
}],
],
'action': [
'python', '<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
'<(python)', '<(V8_ROOT)/tools/testrunner/utils/dump_build_config_gyp.py',
'<@(v8_dump_build_config_args)',
],
},
Expand Down Expand Up @@ -1876,7 +1876,7 @@
'<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
],
'action': [
'python',
'<(python)',
'<(V8_ROOT)/tools/gen-postmortem-metadata.py',
'<@(_outputs)',
'<@(heapobject_files)'
Expand Down

0 comments on commit f2a4def

Please sign in to comment.