[CORE] Add variable merging & FEATURE-APPEND cluster
-
Add cluster
FEATURE-APPEND
to add tolocal.conf
a feature variable with+=
assignment. -
Add variable merging into
local.conf
. For example:VAR = "test" VAR += "second-test
ends up with:
VAR += " \ test \ second-test \ "
Note:
- In the case of a variable with multiple
=
assignments, the values are merged but a warning is raised. - In the case of a variable with multiple
=
assignments, the values are merged and the operator=
is used. - In the case of a variable with multiple mixed assignments (
+=
,=
,:append
) the+=
operator is used. - In the case of a variable with multiple mixed assignments, a
:append
is treated as+=
.
Version bump type: [MINOR]