commit: 7b93048f96a905296df6dacbdae52773855f72b9 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> AuthorDate: Fri Aug 7 21:35:19 2020 +0000 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org> CommitDate: Fri Aug 7 21:35:19 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b93048f
toolchain.eclass: raise minimum gcc-config up to 2.3 In #736040 gcc-config-1.9 was not able to handle gcc-10 paths. Let's raise lower bound to minimum stable version currently in ::gentoo. Reported-by: Dennis Nezic Bug: https://bugs.gentoo.org/736040 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org> eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index a4cb9cc141e..7a4364af4e6 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -261,7 +261,7 @@ case ${EAPI:-0} in 5*|6) DEPEND+=" ${BDEPEND}" ;; esac -PDEPEND=">=sys-devel/gcc-config-1.7" +PDEPEND=">=sys-devel/gcc-config-2.3" #---->> S + SRC_URI essentials <<----
