diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:57:52 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-19 09:57:52 +0000 |
commit | a7bf18812f143bc6926c1c21fcda25ef4ea1d26e (patch) | |
tree | 31668a63a846858b559839c1c037b14371c978a4 /numpy/distutils/command/build_ext.py | |
parent | 233e28b73eb02b7db5fbc573ac2a058f98b8e416 (diff) | |
download | numpy-a7bf18812f143bc6926c1c21fcda25ef4ea1d26e.tar.gz |
Use a tuple when defining the MS_WIN64 macro.
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 66bec3ac1..2945d1ff5 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',)) # Set Fortran/C++ compilers for compilation and linking. if ext.language=='f90': |