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 4185990 commit 9ae2fffCopy full SHA for 9ae2fff
mesonpy/__init__.py
@@ -24,7 +24,6 @@
24
import pathlib
25
import platform
26
import re
27
-import shlex
28
import shutil
29
import subprocess
30
import sys
@@ -725,7 +724,7 @@ def __init__(
725
724
family = 'aarch64' if arch == 'arm64' else arch
726
subsystem = 'ios-simulator' if ios_ver.is_simulator else 'ios'
727
min_ios_version = os.getenv('IPHONEOS_DEPLOYMENT_TARGET', ios_ver.release)
728
- prefix = sysconfig.get_config_var("prefix")
+ prefix = sysconfig.get_config_var('prefix')
729
730
cross_file_data = textwrap.dedent(f'''
731
[binaries]
0 commit comments