From e62a6f59831fe919326df02787e535444de79779 Mon Sep 17 00:00:00 2001 From: Jan Philipp Thiele Date: Wed, 7 Feb 2024 21:59:55 +0100 Subject: [PATCH] Fix deal.II CMake flag in Tpetra warning --- cmake/configure/configure_20_trilinos.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/configure/configure_20_trilinos.cmake b/cmake/configure/configure_20_trilinos.cmake index 4cd100d01a..f8ba7e57d7 100644 --- a/cmake/configure/configure_20_trilinos.cmake +++ b/cmake/configure/configure_20_trilinos.cmake @@ -285,7 +285,7 @@ macro(feature_trilinos_find_external var) STATUS " Tpetra wasn't configured with support for 64-bit global indices\n" " but deal.II is configured to use 64-bit global indices.\n" - " Either reconfigure deal.II with -DDEAL_II_WITH_64_BIT_INDICES=OFF.\n" + " Either reconfigure deal.II with -DDEAL_II_WITH_64BIT_INDICES=OFF.\n" " or rebuild Trilinos with -DTPETRA_INST_INT_LONG_LONG=ON" ) if(DEAL_II_HAVE_TPETRA_INT_LONG) @@ -304,7 +304,7 @@ macro(feature_trilinos_find_external var) STATUS " Tpetra wasn't configured with support for 32-bit global indices\n" " but deal.II is configured to use 32-bit global indices.\n" - " Either reconfigure deal.II with -DDEAL_II_WITH_64_BIT_INDICES=ON.\n" + " Either reconfigure deal.II with -DDEAL_II_WITH_64BIT_INDICES=ON.\n" " or rebuild Trilinos with -DTPETRA_INST_INT_INT=ON" ) if(DEAL_II_HAVE_TPETRA_INT_LONG) -- 2.39.5