summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2016-09-09 19:42:46 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2016-09-09 19:42:46 +0000
commit30a00f2227a3e53b607331247c81c2911c1e98ef (patch)
treeb3bdcd25b598432ef78aefb0f72e9412f429eee4 /comms
parentbenchmarks/polygraph: Handle missing SSLv3 (diff)
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
Notes
Notes: svn path=/head/; revision=421635
Diffstat (limited to 'comms')
-rw-r--r--comms/dfu-util/Makefile1
-rw-r--r--comms/libsdr/Makefile1
-rw-r--r--comms/telldus-core/Makefile1
3 files changed, 0 insertions, 3 deletions
diff --git a/comms/dfu-util/Makefile b/comms/dfu-util/Makefile
index c5f2d8419166..8a64579f25bb 100644
--- a/comms/dfu-util/Makefile
+++ b/comms/dfu-util/Makefile
@@ -14,7 +14,6 @@ LICENSE= GPLv2
GNU_CONFIGURE= yes
CONFIGURE_ENV= USE_LIBS="-lusb" \
ac_cv_lib_usbpath_usb_path2devnum=no
-CONFIGURE_ARGS= --disable-silent-rules
PLIST_FILES= bin/dfu-prefix bin/dfu-suffix bin/dfu-util man/man1/${PORTNAME}.1.gz
diff --git a/comms/libsdr/Makefile b/comms/libsdr/Makefile
index 40a10251e9ff..8f703414392d 100644
--- a/comms/libsdr/Makefile
+++ b/comms/libsdr/Makefile
@@ -22,7 +22,6 @@ GH_ACCOUNT= hmatuschek
MAKE_JOBS_UNSAFE= yes
USES= cmake pkgconfig
CMAKE_ARGS+=-DCMAKE_BUILD_TYPE=RELEASE
-CMAKE_VERBOSE= 1
USE_LDCONFIG= yes
.include <bsd.port.mk>
diff --git a/comms/telldus-core/Makefile b/comms/telldus-core/Makefile
index f3e755a5388c..0a129b629e4b 100644
--- a/comms/telldus-core/Makefile
+++ b/comms/telldus-core/Makefile
@@ -21,7 +21,6 @@ LIB_DEPENDS= libftdi.so:devel/libftdi \
USES= cmake compiler:c++11-lang iconv:wchar_t
-#CMAKE_VERBOSE=yes
CMAKE_ARGS+=-DGENERATE_MAN=TRUE
# Note: these are internal defines and shall NOT contain ${STAGEDIR}
CMAKE_ARGS+=-DSYSCONF_INSTALL_DIR="${PREFIX}/etc"