mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-127146: Fix test_sysconfigdata_json for Emscripten (#128556)
This commit is contained in:
parent
f826beca0c
commit
b6c919b674
1 changed files with 4 additions and 4 deletions
|
@ -485,10 +485,10 @@ def _init_config_vars():
|
|||
_init_posix(_CONFIG_VARS)
|
||||
# If we are cross-compiling, load the prefixes from the Makefile instead.
|
||||
if '_PYTHON_PROJECT_BASE' in os.environ:
|
||||
prefix = _CONFIG_VARS['prefix']
|
||||
exec_prefix = _CONFIG_VARS['exec_prefix']
|
||||
base_prefix = _CONFIG_VARS['prefix']
|
||||
base_exec_prefix = _CONFIG_VARS['exec_prefix']
|
||||
prefix = _CONFIG_VARS['host_prefix']
|
||||
exec_prefix = _CONFIG_VARS['host_exec_prefix']
|
||||
base_prefix = _CONFIG_VARS['host_prefix']
|
||||
base_exec_prefix = _CONFIG_VARS['host_exec_prefix']
|
||||
abiflags = _CONFIG_VARS['ABIFLAGS']
|
||||
|
||||
# Normalized versions of prefix and exec_prefix are handy to have;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue