Re: [PATCH 04/12] build: Improve value substitution

2022-06-30 Thread Sebastian Huber
On 01.07.22 02:18, Chris Johns wrote: On 29/6/2022 4:30 pm, Sebastian Huber wrote: The waf build system uses lists for tool flags. The build items may use variable substitution. Add the ability to use the variable substitution in lists. For example: MORE_FLAGS = ['-more', '-flags']

Re: [PATCH 04/12] build: Improve value substitution

2022-06-30 Thread Chris Johns
On 29/6/2022 4:30 pm, Sebastian Huber wrote: > The waf build system uses lists for tool flags. The build items may use > variable substitution. Add the ability to use the variable substitution in > lists. For example: > > MORE_FLAGS = ['-more', '-flags'] > > flags: > - -some-flag > -

[PATCH 04/12] build: Improve value substitution

2022-06-29 Thread Sebastian Huber
The waf build system uses lists for tool flags. The build items may use variable substitution. Add the ability to use the variable substitution in lists. For example: MORE_FLAGS = ['-more', '-flags'] flags: - -some-flag - ${MORE_FLAGS} Before this change, the ${MORE_FLAGS} was substituted to