FreeBSD Bugzilla – Attachment 175775 Details for
Bug 213446
Configurable verbose build output
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Proposed Mk/Uses/verbose.mk file
verbose.mk (text/plain), 1.09 KB, created by
lightside
on 2016-10-15 04:14:02 UTC
(
hide
)
Description:
Proposed Mk/Uses/verbose.mk file
Filename:
MIME Type:
Creator:
lightside
Created:
2016-10-15 04:14:02 UTC
Size:
1.09 KB
patch
obsolete
># $FreeBSD$ ># ># Provide support for verbose build output ># ># Feature: verbose ># Usage: USES=verbose or USES=verbose:ARGS ># Valid ARGS: var (default, implicit), env ># ARGS description: ># env Add verbose option to MAKE_ENV. ># var Add verbose option to custom defined VERBOSE_VAR variable(s) ># ># Variables for ports: ># VERBOSE_FLAG - Verbose option, which added to specified variable(s) ># Default: V=1 ># VERBOSE_VAR - Custom defined variable(s), which used to add verbose ># option ># Default: MAKE_ARGS ># ># MAINTAINER: portmgr@FreeBSD.org > >.if !defined(_INCLUDE_USES_VERBOSE_MK) >_INCLUDE_USES_VERBOSE_MK= yes > >.if empty(verbose_ARGS) >verbose_ARGS= var >.endif > >_valid_ARGS= var env > ># Sanity check >.for arg in ${verbose_ARGS} >. if empty(_valid_ARGS:M${arg}) >IGNORE= Incorrect 'USES+= verbose:${verbose_ARGS}' usage: argument [${arg}] is\ > not recognized >. endif >.endfor > >.ifndef NO_VERBOSE_BUILD > >VERBOSE_FLAG?= V=1 >VERBOSE_VAR?= MAKE_ARGS > >.if ${verbose_ARGS:Mvar} >. for v in ${VERBOSE_VAR} >${v}+= ${VERBOSE_FLAG} >. endfor >.endif > >.if ${verbose_ARGS:Menv} >MAKE_ENV+= ${VERBOSE_FLAG} >.endif > >.endif >.endif
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 213446
:
175704
|
175705
|
175718
|
175728
|
175729
|
175768
|
175772
|
175774
| 175775 |
175812
|
178899
|
180096