From daac0a5c8796bd9b4de5b2c72d09c60a18564b19 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com>
Date: Mon, 24 Feb 2025 10:23:16 +0100
Subject: [PATCH] Fix AND -> and in CMakeLists.txt

---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 06a273e2c..2a9a234e7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -843,7 +843,7 @@ if (MPI_FOUND)
 else()
   if (PUGS_ENABLE_MPI MATCHES "^OFF$")
     message(" MPI: explicitly deactivated!")
-  elseif((NOT DEFINED PUGS_HAS_PARMETIS) and (NOT DEFINED PUGS_HAS_PTSCOTCH))
+  elseif((NOT DEFINED PUGS_HAS_PARMETIS) AND (NOT DEFINED PUGS_HAS_PTSCOTCH))
     message(" MPI: deactivated: ParMETIS and PTScotch cannot be found!")
   else()
     if (PUGS_ENABLE_MPI MATCHES "^(AUTO|ON)$")
-- 
GitLab