commit: 82d2bfbeefb8b2c042e5d4393ee922feddaab121 Author: Daniel Scharrer <daniel <AT> constexpr <DOT> org> AuthorDate: Fri Dec 4 23:27:08 2015 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Wed Dec 9 14:49:10 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d2bfbe
cmake-utils.eclass: Fix cross-compiling with cmake-3.4 We are interested in the CMake version on the host system, the sysroot might not even have CMake installed at all. Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 2ebde45..ea88e48 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -468,7 +468,7 @@ enable_cmake-utils_src_configure() { if $(version_is_at_least 3.4.0 $(get_version_component_range 1-3 ${PV})) ; then includes="<INCLUDES>" fi - elif has_version \>=dev-util/cmake-3.4.0_rc1 ; then + elif ROOT=/ has_version \>=dev-util/cmake-3.4.0_rc1 ; then includes="<INCLUDES>" fi cat > "${build_rules}" <<- _EOF_ || die