From: Matthias Maier Date: Thu, 2 Nov 2017 16:11:28 +0000 (-0500) Subject: CMake: Fix info string about bundled libraries X-Git-Tag: v9.0.0-rc1~833^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5379%2Fhead;p=dealii.git CMake: Fix info string about bundled libraries --- 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()