summaryrefslogtreecommitdiffstats
path: root/Modules/FindMPI.cmake
diff options
context:
space:
mode:
authorDave Partyka <dave.partyka@kitware.com>2009-10-27 16:57:30 (GMT)
committerDave Partyka <dave.partyka@kitware.com>2009-10-27 16:57:30 (GMT)
commitc283fe2d26f2b0a908ea544edaf87d91138cd77f (patch)
tree61ed4561980cd01b5cf5dd357a2cd7cedb5e020f /Modules/FindMPI.cmake
parent4915e929988fcf5095c1b920cfbe5faf26d26cd9 (diff)
downloadCMake-c283fe2d26f2b0a908ea544edaf87d91138cd77f.zip
CMake-c283fe2d26f2b0a908ea544edaf87d91138cd77f.tar.gz
CMake-c283fe2d26f2b0a908ea544edaf87d91138cd77f.tar.bz2
COMP: fix syntax error.
Diffstat (limited to 'Modules/FindMPI.cmake')
-rw-r--r--Modules/FindMPI.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindMPI.cmake b/Modules/FindMPI.cmake
index 22817e2..18a8752 100644
--- a/Modules/FindMPI.cmake
+++ b/Modules/FindMPI.cmake
@@ -309,7 +309,7 @@ else (MPI_COMPILE_CMDLINE)
)
# Decide between 32-bit and 64-bit libraries for Microsoft's MPI
- if(CMAKE_SIZEOF_VOID_P EQUALS 8)
+ if("${CMAKE_SIZEOF_VOID_P}" EQUAL 8)
set(MS_MPI_ARCH_DIR amd64)
else()
set(MS_MPI_ARCH_DIR i386)