svn commit: r395468 - in head: . Mk

Adam Weinberger adamw at adamw.org
Fri Aug 28 13:15:03 UTC 2015


> On 28 Aug, 2015, at 6:28, Mathieu Arnold <mat at FreeBSD.org> wrote:
> 
> 
> Modified: head/Mk/bsd.options.mk
> ==============================================================================
> --- head/Mk/bsd.options.mk	Fri Aug 28 12:25:47 2015	(r395467)
> +++ head/Mk/bsd.options.mk	Fri Aug 28 12:28:13 2015	(r395468)
> @@ -110,6 +110,15 @@
> # ${opt}_USE_OFF=	FOO=bar	When option is disabled, it will enable
> #				USE_FOO+= bar
> #
> +# ${opt}_VARS=	FOO=bar		When option is enabled, it will run
> +#				FOO= bar
> +# ${opt}_VARS=	FOO+=bar	When option is enabled, it will run
> +#				FOO+= bar
> +# ${opt}_VARS_OFF=    FOO=bar	When option is disabled, it will run
> +#				FOO= bar
> +# ${opt}_VARS_OFF=    FOO+=bar	When option is disabled, it will run
> +#				FOO+= bar

Hi Mat,

This new feature is great! Thank you for this.

Can I suggest using "set" instead of "run" in the above quoted section?

# Adam


-- 
Adam Weinberger
adamw at adamw.org
http://www.adamw.org



More information about the svn-ports-all mailing list