diff options
author | Sam James <sam@gentoo.org> | 2024-07-03 01:53:20 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-07-03 01:53:20 +0100 |
commit | 9b0fbdcf296c0bf013b58637f2a87a5bdc125e52 (patch) | |
tree | cd0fa8fdae081631d8ee0b7bb76bc6e7a1f96982 /eclass/cmake.eclass | |
parent | app-shells/ksh: add 1.0.9 (diff) | |
download | gentoo-9b0fbdcf296c0bf013b58637f2a87a5bdc125e52.tar.gz gentoo-9b0fbdcf296c0bf013b58637f2a87a5bdc125e52.tar.bz2 gentoo-9b0fbdcf296c0bf013b58637f2a87a5bdc125e52.zip |
Revert "cmake.eclass: Set FETCHCONTENT_FULLY_DISCONNECTED=ON"
This reverts commit ca877f01a331bd239db8b6878c7f92fa85e02dae.
Unfortunately, the CMake developers learned of Homebrew doing this
and decided to "block" this functionality because they felt it was abuse.
We now have to implement a "provider" instead...
Bug: https://bugs.gentoo.org/920846
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/cmake.eclass')
-rw-r--r-- | eclass/cmake.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index 908e2356ead2..d7d45217e275 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: cmake.eclass @@ -541,7 +541,6 @@ cmake_src_configure() { set(CMAKE_INSTALL_DOCDIR "${EPREFIX}/usr/share/doc/${PF}" CACHE PATH "") set(BUILD_SHARED_LIBS ON CACHE BOOL "") set(Python3_FIND_UNVERSIONED_NAMES FIRST CACHE STRING "") - set(FETCHCONTENT_FULLY_DISCONNECTED ON CACHE BOOL "") set(CMAKE_DISABLE_PRECOMPILE_HEADERS ON CACHE BOOL "") _EOF_ |