From 9644664e032f2ab59aec77d5f77b4eccdbc089b6 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Mon, 3 Aug 2015 13:28:16 +0200 Subject: [PATCH] configure wrapper: disable the sibling search if the 'configure' wrapper is used, you will most likely use dunecontrol. since duncontrol explicitly passes the paths for all the dependencies, the "convenience" of the sibling search not wanted in most cases. --- cmake/Scripts/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Scripts/configure b/cmake/Scripts/configure index 8aaca705e..15e1055a0 100755 --- a/cmake/Scripts/configure +++ b/cmake/Scripts/configure @@ -547,7 +547,7 @@ elif test "$c_compiler$c_opts$cxx_compiler$cxx_opts$fort_compiler$fort_opts" != fi # pass everything on to CMake -CMDLINE="${ENVVARS}${CMAKE_COMMAND} \"${srcdir}\" ${use_ninja}\"-DCMAKE_INSTALL_PREFIX=$prefix\"${buildtype}${pch_use}${silent_rules}${debug_loc}${use_openmp}${use_mpi}${use_lto}${strip_debug}${use_runpath}${use_tests}${use_samples}${use_underscoring}${c_compiler}${c_opts}${cxx_compiler}${cxx_opts}${fort_compiler}${fort_opts}${boost_opts}${buildname}${site} ${FEATURES}" +CMDLINE="${ENVVARS}${CMAKE_COMMAND} \"${srcdir}\" ${use_ninja}\"-DCMAKE_INSTALL_PREFIX=$prefix\" -DSIBLING_SEARCH=OFF${buildtype}${pch_use}${silent_rules}${debug_loc}${use_openmp}${use_mpi}${use_lto}${strip_debug}${use_runpath}${use_tests}${use_samples}${use_underscoring}${c_compiler}${c_opts}${cxx_compiler}${cxx_opts}${fort_compiler}${fort_opts}${boost_opts}${buildname}${site} ${FEATURES}" echo --- calling CMake --- echo "${CMDLINE}" eval exec "${CMDLINE}"