From: maier Date: Thu, 13 Sep 2012 12:07:27 +0000 (+0000) Subject: Bugfix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0ad59cc9c69c035442acb6afa96e2af322a63af;p=dealii-svn.git Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@26347 0785d39b-7218-0410-832d-ea1e28bc413d --- 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()