From d31e3d5697eacbe87cd310b5bce615f3d8426cc0 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Wed, 10 Apr 2024 07:15:43 -0700 Subject: [PATCH] cmake: fix elseif statement --- CMakeLists.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ce9ccb4..1f187e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,7 +81,7 @@ endif () if(NOT APPLE) if(CMAKE_SIZEOF_VOID_P EQUAL 4) SET(PACK_ARCH "") - else(CMAKE_SIZEOF_VOID_P EQUAL 8) + elseif(CMAKE_SIZEOF_VOID_P EQUAL 8) SET(PACK_ARCH .x86_64) endif(CMAKE_SIZEOF_VOID_P EQUAL 4) else(NOT APPLE) -- 1.7.1