From fed63422a6f521428a599f6a82afbff1e4949b44 Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Thu, 23 Oct 2014 08:19:00 -0700 Subject: [PATCH] Fix typo causing 64-bit binaries to be excluded on OS X 10.6+. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5704eebe..3c24da84 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -168,7 +168,7 @@ if (UNIX) # 10.4: Universal (32-bit Intel and PowerPC) set(CMAKE_OSX_ARCHITECTURES "ppc;i386" CACHE STRING "" FORCE) - else (DARWIN_VERSION LESS 10) + elseif (DARWIN_VERSION LESS 10) # 10.5: 32-bit Intel only set(CMAKE_OSX_ARCHITECTURES "i386" CACHE STRING "" FORCE)