From 76c9a1c9be0c30ef4b73cdd5ae0820bb4408b853 Mon Sep 17 00:00:00 2001 From: Cyrus Harrison Date: Thu, 27 Jan 2022 12:18:04 -0800 Subject: [PATCH] mpi_found vs found_mpi (#232) --- scripts/uberenv_configs/spack_configs | 2 +- src/cmake/SetupBLT.cmake | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/uberenv_configs/spack_configs b/scripts/uberenv_configs/spack_configs index 4d50b99..afb0cb4 160000 --- a/scripts/uberenv_configs/spack_configs +++ b/scripts/uberenv_configs/spack_configs @@ -1 +1 @@ -Subproject commit 4d50b99846fff60944e72577fc13eab16cde61dc +Subproject commit afb0cb4ad1871657d29d9042204cfddf6b0d352e diff --git a/src/cmake/SetupBLT.cmake b/src/cmake/SetupBLT.cmake index cb399e1..2f0ace0 100644 --- a/src/cmake/SetupBLT.cmake +++ b/src/cmake/SetupBLT.cmake @@ -37,10 +37,10 @@ include(${BLT_SOURCE_DIR}/SetupBLT.cmake) if(ENABLE_MPI) # on some platforms (mostly cray systems) folks skip mpi # detection in BLT by setting ENABLE_FIND_MPI = OFF - # in these cases, we need to set FOUND_MPI = TRUE, - # since the rest of our cmake logic to include MPI uses FOUND_MPI + # in these cases, we need to set MPI_FOUND = TRUE, + # since the rest of our cmake logic to include MPI uses MPI_FOUND if(NOT ENABLE_FIND_MPI) - set(FOUND_MPI ON CACHE BOOL "") + set(MPI_FOUND ON CACHE BOOL "") endif() endif()