From b0f1765113bc6eed2a15cdebf306a36059b5a1bc Mon Sep 17 00:00:00 2001 From: Petr Vaněk Date: Sun, 5 Mar 2023 17:16:24 +0100 Subject: net-misc/bird: Make the compilation and test phases verbose MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Vaněk Closes: https://github.com/gentoo/gentoo/pull/29977 Signed-off-by: Sam James --- 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() { -- cgit v1.2.3-65-gdbad