diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-28 12:28:13 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-08-28 12:28:13 +0000 |
commit | 9c517d8878f65a77bdcac28fb58bddef5aa47ef2 (patch) | |
tree | f691b46b14dc311252a12b21c239ac707eddc5fc /CHANGES | |
parent | 5184f8775cc52d16787b6b4b49a32e6b917d0518 (diff) |
Add generic opt_VARS/opt_VARS_OFF.
OPT1_VARS= foo=bar baz+=bam
will set FOO to bar and append bam to BAZ if OPT1 is enabled. <opt>_VARS_OFF
works the same way, if the option is disabled.
Reviewed by: bapt
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3410
Notes
Notes:
svn path=/head/; revision=395468
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -10,6 +10,17 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20150828: +AUTHOR: mat@FreeBSD.org + + <opt>_VARS and <opt>_VARS_OFF have been introduced to allow for a generic way + to set/append to variables. + + OPT1_VARS= foo=bar baz+=bam + + will set FOO to bar and append bam to BAZ if OPT1 is enabled. <opt>_VARS_OFF + works the same way, if the option is disabled. + 20150818: AUTHOR: kde@FreeBSD.org |