Commit cc234163 authored by Jesse Noller's avatar Jesse Noller

Apply patch for issue 3090: ARCHFLAGS parsing incorrect

parent 07491092
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment