We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb04312 commit 1a6b81bCopy full SHA for 1a6b81b
Lib/sysconfig/__main__.py
@@ -213,10 +213,7 @@ def _generate_posix_vars():
213
module.build_time_vars = vars
214
sys.modules[name] = module
215
216
- pybuilddir = os.environ.get(
217
- '_PYTHON_SYSCONFIGDATA_PATH',
218
- f'build/lib.{get_platform()}-{get_python_version()}',
219
- )
+ pybuilddir = f'build/lib.{get_platform()}-{get_python_version()}'
220
os.makedirs(pybuilddir, exist_ok=True)
221
destfile = os.path.join(pybuilddir, name + '.py')
222
0 commit comments