From 41f2caa2f903c1cc8941dd28dce185923f621822 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 2 Nov 2017 11:11:28 -0500 Subject: [PATCH] CMake: Fix info string about bundled libraries --- cmake/configure/configure_boost.cmake | 2 +- cmake/macros/macro_configure_feature.cmake | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cmake/configure/configure_boost.cmake b/cmake/configure/configure_boost.cmake index ae851671cd..47b18cae81 100644 --- a/cmake/configure/configure_boost.cmake +++ b/cmake/configure/configure_boost.cmake @@ -17,7 +17,7 @@ # Configuration for the boost library: # -IF(NOT FEATURE_ZLIB_PROCESSED) +IF(NOT FEATURE_ZLIB_PROCESSED) MESSAGE(FATAL_ERROR "\n" "Internal build system error: The configuration of " "DEAL_II_WITH_BOOST depends on " diff --git a/cmake/macros/macro_configure_feature.cmake b/cmake/macros/macro_configure_feature.cmake index dd6e0de50c..20a3a1b02f 100644 --- a/cmake/macros/macro_configure_feature.cmake +++ b/cmake/macros/macro_configure_feature.cmake @@ -114,7 +114,8 @@ or set the relevant variables by hand in ccmake." ${${_feature}_ADDITIONAL_ERROR_STRING} "Please ensure that a suitable ${_feature_lowercase} library is installed on your computer.\n" "If the library is not at a default location, either provide some hints " - "for autodetection,${_hint_snippet}${_bundled_snippet}" + "for autodetection,${_hint_snippet}" + ${_bundled_snippet} ) ENDMACRO() -- 2.39.5