aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2015-08-28 12:28:13 +0000
committerMathieu Arnold <mat@FreeBSD.org>2015-08-28 12:28:13 +0000
commit9c517d8878f65a77bdcac28fb58bddef5aa47ef2 (patch)
treef691b46b14dc311252a12b21c239ac707eddc5fc /CHANGES
parent5184f8775cc52d16787b6b4b49a32e6b917d0518 (diff)
downloadports-9c517d8878f65a77bdcac28fb58bddef5aa47ef2.tar.gz
ports-9c517d8878f65a77bdcac28fb58bddef5aa47ef2.zip
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--CHANGES11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 8755cec4cace..60a738cab981 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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