From d975d49f54e4403fc6af10fe1ae50dc98f150ef3 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 5 Aug 2016 10:19:50 -0500 Subject: [PATCH] CMake: Bugfix: Do not set up python component for boost --- cmake/modules/FindBOOST.cmake | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cmake/modules/FindBOOST.cmake b/cmake/modules/FindBOOST.cmake index b8a08bf3b3..862d49fa12 100644 --- a/cmake/modules/FindBOOST.cmake +++ b/cmake/modules/FindBOOST.cmake @@ -43,12 +43,8 @@ ENDIF() # temporarily disable ${CMAKE_SOURCE_DIR}/cmake/modules for module lookup LIST(REMOVE_ITEM CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules/) -SET(_boost_python "") -IF(DEAL_II_COMPONENT_PYTHON_BINDINGS) - SET(_boost_python "python") -ENDIF() FIND_PACKAGE(Boost 1.54 COMPONENTS - iostreams serialization system thread ${_boost_python} + iostreams serialization system thread ) LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules/) -- 2.39.5