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 207110a commit 1775bf7Copy full SHA for 1775bf7
patch/Python/_cross_target.py.tmpl
@@ -11,8 +11,8 @@ import sysconfig
11
sys.cross_compiling = True
12
sys.platform = "{{platform}}"
13
sys.implementation._multiarch = "{{arch}}-{{sdk}}"
14
-sys.base_prefix = sysconfig.get_config_var("prefix")
15
-sys.base_exec_prefix = sysconfig.get_config_var("prefix")
+sys.base_prefix = sysconfig._get_sysconfigdata()["prefix"]
+sys.base_exec_prefix = sysconfig._get_sysconfigdata()["prefix"]
16
17
###########################################################################
18
# subprocess module patches
0 commit comments