mirror of https://github.com/python/cpython
Apply patch for issue 3090: ARCHFLAGS parsing incorrect
This commit is contained in:
parent
64b7e501f4
commit
a6c5dc07f4
|
@ -76,8 +76,7 @@ def _darwin_compiler_fixup(compiler_so, cc_args):
|
|||
if 'ARCHFLAGS' in os.environ and not stripArch:
|
||||
# User specified different -arch flags in the environ,
|
||||
# see also distutils.sysconfig
|
||||
compiler_so = compiler_so + ' ' + os.environ['ARCHFLAGS']
|
||||
|
||||
compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
|
||||
|
||||
if stripSysroot:
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue