View | Details | Raw Unified | Return to bug 212075 | Differences between
and this patch

Collapse All | Expand All

(-)Mk/Uses/ninja.mk (-1 / +5 lines)
Lines 7-13 Link Here
7
#
7
#
8
# User defined variables:
8
# User defined variables:
9
# NINJA_VERBOSE		- Enable verbose output.
9
# NINJA_VERBOSE		- Enable verbose output.
10
#
10
#			Default: not set, unless BATCH or PACKAGE_BUILDING is defined.
11
# MAINTAINER: portmgr@FreeBSD.org
11
# MAINTAINER: portmgr@FreeBSD.org
12
12
13
.if !defined(_INCLUDE_USES_NINJA_MK)
13
.if !defined(_INCLUDE_USES_NINJA_MK)
Lines 17-22 Link Here
17
IGNORE=	Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments
17
IGNORE=	Incorrect 'USES+= ninja:${ninja_ARGS}' ninja takes no arguments
18
.endif
18
.endif
19
19
20
.if defined(BATCH) || defined(PACKAGE_BUILDING)
21
NINJA_VERBOSE=	yes
22
.endif
23
20
.if defined(NINJA_VERBOSE)
24
.if defined(NINJA_VERBOSE)
21
MAKE_ARGS+=	-v
25
MAKE_ARGS+=	-v
22
.endif
26
.endif
(-)Mk/bsd.port.mk (+9 lines)
Lines 789-794 Link Here
789
# CONFIGURE_LOG	- The name of configure log file. It will be printed to
789
# CONFIGURE_LOG	- The name of configure log file. It will be printed to
790
#				  the screen if configure fails.
790
#				  the screen if configure fails.
791
#				  Default: config.log
791
#				  Default: config.log
792
# CONFIGURE_VERBOSE
793
#				- Enable verbose configure output.
794
#				  Default: not set, unless BATCH or PACKAGE_BUILDING is defined.
792
# CONFIGURE_FAIL_MESSAGE
795
# CONFIGURE_FAIL_MESSAGE
793
#				- A message displayed to users when configure
796
#				- A message displayed to users when configure
794
#				  fails (note: this assumes the do-configure
797
#				  fails (note: this assumes the do-configure
Lines 2488-2493 Link Here
2488
GNU_CONFIGURE_MANPREFIX?=	${MANPREFIX}
2491
GNU_CONFIGURE_MANPREFIX?=	${MANPREFIX}
2489
CONFIG_SITE?=		${PORTSDIR}/Templates/config.site
2492
CONFIG_SITE?=		${PORTSDIR}/Templates/config.site
2490
CONFIGURE_ARGS+=	--prefix=${GNU_CONFIGURE_PREFIX} $${_LATE_CONFIGURE_ARGS}
2493
CONFIGURE_ARGS+=	--prefix=${GNU_CONFIGURE_PREFIX} $${_LATE_CONFIGURE_ARGS}
2494
.if defined(BATCH) || defined(PACKAGE_BUILDING)
2495
CONFIGURE_VERBOSE=	yes
2496
.endif
2497
.if defined(CONFIGURE_VERBOSE)
2498
CONFIGURE_ARGS+=	--disable-silent-rules
2499
.endif
2491
.if defined(X_BUILD_FOR)
2500
.if defined(X_BUILD_FOR)
2492
CONFIGURE_ARGS+=	--host=${X_BUILD_FOR}
2501
CONFIGURE_ARGS+=	--host=${X_BUILD_FOR}
2493
.endif
2502
.endif

Return to bug 212075