summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-08-07 10:40:27 +0100
committerSam James <sam@gentoo.org>2024-08-07 10:40:27 +0100
commit60bbe4613834d198e3969ce9ffb6124212b53c41 (patch)
tree9a1b191340221c0930f6f1230850c282cb0c85d1 /eclass
parentdev-ruby/mime-types-data: Stabilize 3.2024.0702 arm64, #937477 (diff)
downloadgentoo-60bbe4613834d198e3969ce9ffb6124212b53c41.tar.gz
gentoo-60bbe4613834d198e3969ce9ffb6124212b53c41.tar.bz2
gentoo-60bbe4613834d198e3969ce9ffb6124212b53c41.zip
toolchain.eclass: fix typos w/ RUNTESTFLAGS
Fixes: 7eab20a224f411ef2660f4fecae22e28cad711e7 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass6
1 files 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.