From: David Wells Date: Fri, 4 Dec 2015 12:55:47 +0000 (-0500) Subject: Fix a typo in a CMake check. X-Git-Tag: v8.4.0-rc2~181^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1945%2Fhead;p=dealii.git Fix a typo in a CMake check. --- diff --git a/bundled/boost-1.56.0/libs/iostreams/src/CMakeLists.txt b/bundled/boost-1.56.0/libs/iostreams/src/CMakeLists.txt index cd8a192403..4a88aadb24 100644 --- a/bundled/boost-1.56.0/libs/iostreams/src/CMakeLists.txt +++ b/bundled/boost-1.56.0/libs/iostreams/src/CMakeLists.txt @@ -26,7 +26,7 @@ SET(src_boost_iostreams zlib.cpp ) -IF(DEALII_WITH_BZIP2) +IF(DEAL_II_WITH_BZIP2) LIST(APPEND src_boost_iostreams bzip2.cpp) ELSE() MESSAGE(STATUS "BOOST::Iostreams will not support bz2'ed streams because libbz2 or its header files could not be found")