Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 30 May 2022 06:30:28
Message-Id: 1653892162.0abf78730d9d25282db8eff90cfd06abdbc7b09c.sam@gentoo
1 commit: 0abf78730d9d25282db8eff90cfd06abdbc7b09c
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 06:24:39 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 06:29:22 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0abf7873
7
8 toolchain.eclass: prepend output sync again
9
10 It's easier for folks to override and the issue I hit was something else.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 eclass/toolchain.eclass | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
18 index 8e96849608c1..aa0cfb1cd612 100644
19 --- a/eclass/toolchain.eclass
20 +++ b/eclass/toolchain.eclass
21 @@ -497,7 +497,7 @@ toolchain_pkg_setup() {
22 # See https://www.gnu.org/software/make/manual/html_node/Parallel-Output.html
23 # Avoid really confusing logs from subconfigure spam, makes logs far
24 # more legible.
25 - MAKEOPTS+=" --output-sync=line"
26 + MAKEOPTS="--output-sync=line ${MAKEOPTS}"
27 }
28
29 #---->> src_unpack <<----