commit: 6029280204380cee264a8bd45ffcd0c4d6b214f1 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Fri Jun 16 08:38:55 2023 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Fri Jun 16 14:09:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60292802
toolchain.eclass: Don't inherit eutils None of the ebuilds inheriting toolchain in EAPI 7 needs any of the remaining eutils features. Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> eclass/toolchain.eclass | 3 --- 1 file changed, 3 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3578ac7f44ec..3013e5c9aeca 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -22,7 +22,6 @@ _TOOLCHAIN_ECLASS=1 DESCRIPTION="The GNU Compiler Collection" HOMEPAGE="https://gcc.gnu.org/" -[[ ${EAPI} == 7 ]] && inherit eutils inherit edo flag-o-matic gnuconfig libtool multilib pax-utils toolchain-funcs prefix tc_is_live() { @@ -61,7 +60,6 @@ is_crosscompile() { [[ ${CHOST} != ${CTARGET} ]] } - # @FUNCTION: tc_version_is_at_least # @USAGE: ver1 [ver2] # @DESCRIPTION: @@ -927,7 +925,6 @@ toolchain_src_configure() { # ;; # esac - ### Cross-compiler options if is_crosscompile ; then # Enable build warnings by default with cross-compilers when system
