From a7bf18812f143bc6926c1c21fcda25ef4ea1d26e Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Fri, 19 Dec 2008 09:57:52 +0000 Subject: Use a tuple when defining the MS_WIN64 macro. --- numpy/distutils/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils/command/build_ext.py') 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': -- cgit v1.2.1