twister: remove spurious quoting of EXTRA_xFLAGS=-Werror
Testing shows cmake is invoked directly, not through a shell.
Fixes commit 5092541e2b
("sanitycheck: disable erroring on warnings").
Note EXTRA_AFLAGS was quoted only on the left side!
Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
parent
864888f2ce
commit
19e4e12c03
1 changed files with 3 additions and 3 deletions
|
@ -2149,9 +2149,9 @@ class CMake():
|
|||
cmake_args = [
|
||||
f'-B{self.build_dir}',
|
||||
f'-S{self.source_dir}',
|
||||
f'-DEXTRA_CFLAGS="{cflags}"',
|
||||
f'-DEXTRA_AFLAGS="{aflags}',
|
||||
f'-DEXTRA_LDFLAGS="{ldflags}"',
|
||||
f'-DEXTRA_CFLAGS={cflags}',
|
||||
f'-DEXTRA_AFLAGS={aflags}',
|
||||
f'-DEXTRA_LDFLAGS={ldflags}',
|
||||
f'-DEXTRA_GEN_DEFINES_ARGS={gen_defines_args}',
|
||||
f'-G{self.generator}'
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue