Gentoo Archives: gentoo-dev

From: Matt Turner <mattst88@g.o>
To: gentoo-dev@l.g.o
Cc: Agostino Sarubbo <ago@g.o>
Subject: [gentoo-dev] [PATCH] xorg-2.eclass: Enable verbose build logs.
Date: Sat, 04 Mar 2017 19:13:22
Message-Id: 20170304191308.27007-1-mattst88@gentoo.org
1 From: Agostino Sarubbo <ago@g.o>
2
3 Bug: https://bugs.gentoo.org/458000
4 ---
5 eclass/xorg-2.eclass | 6 ++++++
6 1 file changed, 6 insertions(+)
7
8 diff --git a/eclass/xorg-2.eclass b/eclass/xorg-2.eclass
9 index 1af1705..fe44658 100644
10 --- a/eclass/xorg-2.eclass
11 +++ b/eclass/xorg-2.eclass
12 @@ -472,9 +472,15 @@ xorg-2_src_configure() {
13 local selective_werror="--disable-selective-werror"
14 fi
15
16 + # Check if package supports a verbose build
17 + if grep -q -s "disable-silent-rules" ${ECONF_SOURCE:-.}/configure; then
18 + local no_silent="--disable-silent-rules"
19 + fi
20 +
21 local myeconfargs=(
22 ${dep_track}
23 ${selective_werror}
24 + ${no_silent}
25 ${FONT_OPTIONS}
26 "${xorgconfadd[@]}"
27 )
28 --
29 2.10.2

Replies