diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 10:05:03 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 10:05:03 +0000 |
commit | 45d2c14ee19a23866ef44d4befe9058593c4e15d (patch) | |
tree | c1cc6f67f61a7de0c97116bffcbe3a65964d46f3 /numpy/distutils/command/build_ext.py | |
parent | a7bf18812f143bc6926c1c21fcda25ef4ea1d26e (diff) | |
download | numpy-45d2c14ee19a23866ef44d4befe9058593c4e15d.tar.gz |
Fix macro def.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 2945d1ff5..8d26718d0 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -284,7 +284,7 @@ class build_ext (old_build_ext): # Py_ModuleInit4_64, etc... So we add it here if self.compiler.compiler_type == 'mingw32' and \ get_build_architecture() == 'AMD64': - macros.append(('MS_WIN64',)) + macros.append(('MS_WIN64', None)) # Set Fortran/C++ compilers for compilation and linking. if ext.language=='f90': |