Skip to content

Commit

Permalink
pythongh-102151: Correctly fetch CONFIG_ARGS in Tools/freeze/test/fre…
Browse files Browse the repository at this point in the history
…eze.py
  • Loading branch information
erlend-aasland committed Feb 22, 2023
1 parent d5c7954 commit d5bd2d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/freeze/test/freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def prepare(script=None, outdir=None):
print(f'configuring python in {builddir}...')
cmd = [
os.path.join(srcdir, 'configure'),
*shlex.split(get_config_var(builddir, 'CONFIG_ARGS') or ''),
*shlex.split(get_config_var(srcdir, 'CONFIG_ARGS') or ''),
]
ensure_opt(cmd, 'cache-file', os.path.join(outdir, 'python-config.cache'))
prefix = os.path.join(outdir, 'python-installation')
Expand Down

0 comments on commit d5bd2d1

Please sign in to comment.