From 30a00f2227a3e53b607331247c81c2911c1e98ef Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 9 Sep 2016 19:42:46 +0000 Subject: Most commonly used build systems support silent builds, when they hide actual commands executed and only show short summary line (like "CC foo.c"). CMake and ninja enable this by default, some autotools using ports do as well. This is unacceptable because we need complete build logs at any time, so we now switch to verbose build logs unconditionally. Note that this change deliberately affects ALL builds and not only package builds on cluster, because we need to be sure that user experiencing failure can always provide informative build log regardless of settings and without rerunning the build. Change summary: - Always do verbose builds for cmake, ninja and GNU configure (the latter includes check if --disable-silent-rules is actually supported by the configure script; there are isolated cases when it's not true) - Remove CMAKE_VERBOSE, NINJA_VERBOSE and CONFIGURE_ARGS=--disable-silent-rules from all ports which set them for this is no longer needed - Revert hacks for --disable-silent-rules support priorly committed to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well Submitted by: amdmi3 Reviewed by: mat Exp-run by: antoine Approved by: portmgr (mat, antoine) Differential Revision: D7534 --- mail/mpop/Makefile | 2 +- mail/mu/Makefile | 2 +- mail/mu4e/Makefile | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) (limited to 'mail') diff --git a/mail/mpop/Makefile b/mail/mpop/Makefile index 5d8c5708f2e1..cda459f68cea 100644 --- a/mail/mpop/Makefile +++ b/mail/mpop/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv3+ USES= cpe gmake makeinfo pkgconfig tar:xz CPE_VENDOR= martin_lambers GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --with-tls=no +CONFIGURE_ARGS= --with-tls=no INFO= mpop diff --git a/mail/mu/Makefile b/mail/mu/Makefile index 9871dbd59713..a52e4ad6b87c 100644 --- a/mail/mu/Makefile +++ b/mail/mu/Makefile @@ -21,7 +21,7 @@ GH_ACCOUNT= djcb USES= autoreconf gmake libtool makeinfo pkgconfig USE_GNOME= glib20 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules --disable-gtk --disable-mu4e +CONFIGURE_ARGS= --disable-gtk --disable-mu4e INSTALL_TARGET= install-strip OPTIONS_DEFINE= DOCS GUILE diff --git a/mail/mu4e/Makefile b/mail/mu4e/Makefile index 48e7de960395..d3df05ed32de 100644 --- a/mail/mu4e/Makefile +++ b/mail/mu4e/Makefile @@ -18,8 +18,7 @@ GH_PROJECT= mu GH_ACCOUNT= djcb USE_EMACS= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-silent-rules \ - --disable-gtk \ +CONFIGURE_ARGS= --disable-gtk \ --disable-webkit \ --disable-guile \ --docdir="${DOCSDIR}" \ -- cgit v1.2.3