summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2015-10-21 14:43:29 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2015-10-21 14:43:29 +0000
commite189ed624b90be720be89f3d179722161907ba4a (patch)
tree7205d6d70e9740cdd58bf96ff3640dd96fe30214 /Mk
parent- Update to 5.20151020 (diff)
Enable verbose (compiler output) builds for autotools builds when package
building as these commands can be critical for debugging build failures. Discussed with: bapt, kwm With hat: portmgr
Notes
Notes: svn path=/head/; revision=399921
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 41d8c8958628..4beb935848a8 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -2633,6 +2633,9 @@ GNU_CONFIGURE_PREFIX?= ${PREFIX}
GNU_CONFIGURE_MANPREFIX?= ${MANPREFIX}
CONFIG_SITE?= ${PORTSDIR}/Templates/config.site
CONFIGURE_ARGS+= --prefix=${GNU_CONFIGURE_PREFIX} $${_LATE_CONFIGURE_ARGS}
+.if defined(PACKAGE_BUILDING)
+MAKE_ARGS+= V=1
+.endif
.if defined(X_BUILD_FOR)
CONFIGURE_ARGS+= --host=${X_BUILD_FOR}
.endif