diff options
author | Sam James <sam@gentoo.org> | 2024-08-11 18:35:12 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-08-11 21:53:44 +0100 |
commit | 1e38f02f41e79e1fb15b1d418f0a792ce22c390d (patch) | |
tree | bb34652c9b708b28210ca9f6c9552b1f4fbb9869 /eclass | |
parent | media-sound/kasts: Drop unused dependencies (diff) | |
download | gentoo-1e38f02f41e79e1fb15b1d418f0a792ce22c390d.tar.gz gentoo-1e38f02f41e79e1fb15b1d418f0a792ce22c390d.tar.bz2 gentoo-1e38f02f41e79e1fb15b1d418f0a792ce22c390d.zip |
toolchain.eclass: style tweak
For consistency.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index bfb087146864..984c37a3fa73 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2049,7 +2049,7 @@ toolchain_src_test() { eerror "GCC_TESTS_IGNORE_NO_BASELINE is set, ignoring test result and creating a new baseline..." elif [[ -n ${GCC_TESTS_REGEN_BASELINE} ]] ; then eerror "GCC_TESTS_REGEN_BASELINE is set, ignoring test result and creating using a new baseline..." - elif [[ ${ret} != 0 ]]; then + elif [[ ${ret} != 0 ]] ; then eerror "(Set GCC_TESTS_IGNORE_NO_BASELINE=1 to make this non-fatal and generate a baseline.)" die "Tests failed (failures occurred with no reference data)" fi |