From d0ad59cc9c69c035442acb6afa96e2af322a63af Mon Sep 17 00:00:00 2001 From: maier Date: Thu, 13 Sep 2012 12:07:27 +0000 Subject: [PATCH] Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@26347 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/contrib/cmake/configure/configure_boost.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/contrib/cmake/configure/configure_boost.cmake b/deal.II/contrib/cmake/configure/configure_boost.cmake index c7493ee36a..06c00f935c 100644 --- a/deal.II/contrib/cmake/configure/configure_boost.cmake +++ b/deal.II/contrib/cmake/configure/configure_boost.cmake @@ -3,7 +3,7 @@ IF(NOT DEAL_II_FORCE_CONTRIB_BOOST) FIND_PACKAGE (Boost COMPONENTS serialization thread) IF(NOT DEAL_II_ALLOW_CONTRIB) - IF(NOT Boost_THREAD_FOUND OR NOT Boost_Serialization_FOUND) + IF(NOT Boost_THREAD_FOUND OR NOT Boost_SERIALIZATION_FOUND) macro_message_not_found("boost" "Boost") ENDIF() ELSE() -- 2.39.5