commit: 60bbe4613834d198e3969ce9ffb6124212b53c41
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 09:40:27 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 09:40:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60bbe461
toolchain.eclass: fix typos w/ RUNTESTFLAGS
Fixes: 7eab20a224f411ef2660f4fecae22e28cad711e7
Signed-off-by: Sam James <sam <AT> gentoo.org>
eclass/toolchain.eclass | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 106939bfdeb5..e81116973c67 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1948,10 +1948,10 @@ toolchain_src_test() {
filter-flags -Wbuiltin-declaration-mismatch
local
suppress_warn="/-Wno-format/-Wno-format-security/-Wno-trampolines"
- RUNTESTFLAGS+=" --target_board=unix\{${suppress_warn}"
+ GCC_TESTS_RUNTESTFLAGS+=" --target_board=unix\{${suppress_warn}"
# TODO: Does this handle s390 (-m31) correctly?
- is_multilib && GCC_TESTS_RUNTESTFLAGS+=" ,-m32/${suppress_warn}"
- RUNTESTFLAGS+="\}"
+ is_multilib && GCC_TESTS_RUNTESTFLAGS+=",-m32/${suppress_warn}"
+ GCC_TESTS_RUNTESTFLAGS+="\}"
# nonfatal here as we die if the comparison below fails. Also,
note that
# the exit code of targets other than 'check' may be unreliable.