commit: 0abf78730d9d25282db8eff90cfd06abdbc7b09c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 30 06:24:39 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 30 06:29:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0abf7873
toolchain.eclass: prepend output sync again
It's easier for folks to override and the issue I hit was something else.
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 8e96849608c1..aa0cfb1cd612 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -497,7 +497,7 @@ toolchain_pkg_setup() {
# See
https://www.gnu.org/software/make/manual/html_node/Parallel-Output.html
# Avoid really confusing logs from subconfigure spam, makes logs far
# more legible.
- MAKEOPTS+=" --output-sync=line"
+ MAKEOPTS="--output-sync=line ${MAKEOPTS}"
}
#---->> src_unpack <<----