commit: 4490fff1cd5ba88de79a9e956b91241f2a1fecaa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 16 15:16:39 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Dec 16 15:16:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4490fff1
toolchain.eclass: fix _tc_use_if_iuse typo
Fixes: 3ab36cc3531af8a39c1b28bc30f8b724b9242949
Signed-off-by: Sam James <sam <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 55b2127a4f11..8d2c04b6bf25 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1323,7 +1323,7 @@ toolchain_src_configure() {
confgcc+=( --enable-lto )
# Build compiler itself using LTO
- if tc_use_if_iuse lto ; then
+ if _tc_use_if_iuse lto ; then
# GCC 11 at least has a -Wlto-type-mismatch issue with Ada
if ! tc_version_is_at_least 12.1 && is_ada ; then
:;