From e1c893127f2ab8477e51fc5c9dc247518c14df55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20K=C3=BCmmel?= Date: Sun, 20 Dec 2015 14:00:04 +0100 Subject: [PATCH] boost dir is used for out-of-source build detection --- src/support/Package.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/Package.cpp b/src/support/Package.cpp index dda5114fa1..de06c19d60 100644 --- a/src/support/Package.cpp +++ b/src/support/Package.cpp @@ -302,7 +302,7 @@ bool isBuildDir(FileName const & abs_binary, string const & dir_location, return true; } // cmake file, no Makefile in lib - FileName build_boost_dir = FileName(addPath(search_dir, "boost")); + FileName build_boost_dir = FileName(addPath(search_dir + "/3rdparty", "boost")); if (!fileSearch(build_boost_dir.absFileName(), "cmake_install.cmake").empty()) { return true; }