Commit b114b200 authored by Jason Madden's avatar Jason Madden

Merge pull request #626 from kchen/patch-1

Add space to gcc command line for 32-bit builds.
parents 8bfa0b10 e4834604
......@@ -72,7 +72,7 @@ libev_configure_command = ' '.join(["(cd ", _quoted_abspath('libev/'),
# See #616, trouble building for a 32-bit python against a 64-bit platform
_config_vars = distutils.sysconfig.get_config_var("CFLAGS")
if _config_vars and "m32" in _config_vars:
_m32 = 'CFLAGS="' + os.getenv('CFLAGS', '') + ' -m32"'
_m32 = 'CFLAGS="' + os.getenv('CFLAGS', '') + ' -m32" '
else:
_m32 = ''
......
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