summaryrefslogtreecommitdiff
path: root/Modules/CMakeGenericSystem.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2012-05-10 07:08:09 -0400
committerBrad King <brad.king@kitware.com>2012-05-10 07:08:09 -0400
commit5af93bb9879b95364af792b59325c23698ecf55a (patch)
tree02b223a1eead2675fc1f5b73a173f5da8385672b /Modules/CMakeGenericSystem.cmake
parent0fa3d093693642a2b6535b93ea99344397f79267 (diff)
downloadcmake-5af93bb9879b95364af792b59325c23698ecf55a.tar.gz
VS11: Fix ARM architecture hint typo (#13077)
Diffstat (limited to 'Modules/CMakeGenericSystem.cmake')
-rw-r--r--Modules/CMakeGenericSystem.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeGenericSystem.cmake b/Modules/CMakeGenericSystem.cmake
index bc4096dcd2..127588fcff 100644
--- a/Modules/CMakeGenericSystem.cmake
+++ b/Modules/CMakeGenericSystem.cmake
@@ -77,7 +77,7 @@ function(GetDefaultWindowsPrefixBase var)
#
if("${CMAKE_GENERATOR}" MATCHES "(Win64|IA64)")
set(arch_hint "x64")
- elif("${CMAKE_GENERATOR}" MATCHES "ARM")
+ elseif("${CMAKE_GENERATOR}" MATCHES "ARM")
set(arch_hint "ARM")
elseif("${CMAKE_SIZEOF_VOID_P}" STREQUAL "8")
set(arch_hint "x64")