Commit e4834604 authored by Kevin Chen's avatar Kevin Chen

Add space for 32-bit builds.

parent 1e3ea273
......@@ -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