commit:     b0f1765113bc6eed2a15cdebf306a36059b5a1bc
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Sun Mar  5 16:16:24 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar  7 17:17:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f17651

net-misc/bird: Make the compilation and test phases verbose

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/29977
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/bird/bird-2.0.12.ebuild | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/net-misc/bird/bird-2.0.12.ebuild b/net-misc/bird/bird-2.0.12.ebuild
index 5d34f3ad4cd1..11b8c7484e39 100644
--- a/net-misc/bird/bird-2.0.12.ebuild
+++ b/net-misc/bird/bird-2.0.12.ebuild
@@ -46,11 +46,17 @@ src_prepare() {
 }
 
 src_configure() {
-       econf \
-               --localstatedir="${EPREFIX}/var" \
-               $(use_enable client) \
-               $(use_enable debug) \
+       # This export makes compilation and test phases verbose
+       export VERBOSE=1
+
+       local myargs=(
+               --localstatedir="${EPREFIX}/var"
+               $(use_enable client)
+               $(use_enable debug)
                $(use_enable libssh)
+       )
+
+       econf "${myargs[@]}"
 }
 
 src_install() {

Reply via email to