From 795b90685ce8bf70c1366e04448fa6a2752e3293 Mon Sep 17 00:00:00 2001 From: maier Date: Mon, 17 Sep 2012 18:01:34 +0000 Subject: [PATCH] Fix a typo git-svn-id: https://svn.dealii.org/branches/branch_cmake@26439 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/contrib/cmake/configure/configure_trilinos.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/contrib/cmake/configure/configure_trilinos.cmake b/deal.II/contrib/cmake/configure/configure_trilinos.cmake index e7755e6880..c0ce95bb31 100644 --- a/deal.II/contrib/cmake/configure/configure_trilinos.cmake +++ b/deal.II/contrib/cmake/configure/configure_trilinos.cmake @@ -32,14 +32,14 @@ MACRO(FEATURE_TRILINOS_FIND_EXTERNAL var) MESSAGE(STATUS "Found ${macro_module}") ELSE() MESSAGE(WARNING "Module ${macro_module} not found!") - LIST(APPEND macro_modules_missing ${macro_module}) + SET(macro_modules_missing "${macro_modules_missing} ${macro_module}") SET(${var} FALSE) ENDIF() ENDFOREACH() IF(NOT ${var}) MESSAGE(WARNING " -The Trilinos installation is missing one or modules necessary for +The Trilinos installation is missing one or more modules necessary for the deal.II Trilinos interfaces: ${macro_modules_missing} -- 2.39.5