cmake: fix elseif statement
authorShawn Hoffman <godisgovernment@gmail.com>
Wed, 10 Apr 2024 14:15:43 +0000 (07:15 -0700)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Thu, 12 Jun 2025 20:00:07 +0000 (22:00 +0200)
CMakeLists.txt

index ce9ccb4..1f187e4 100644 (file)
@@ -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)