From: Matthias Maier Date: Thu, 13 Sep 2012 12:07:27 +0000 (+0000) Subject: Bugfix X-Git-Tag: v8.0.0~1079^2~883 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62e63cc7b61b6b5533c0ced0b4b39a9fe02acf0c;p=dealii.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()