cmake: removed stray space in readelf in-/outfile flag
Removed stray whitespace in readelf infile and outfile flag. Some bintools use `--arg=<val>`, others `--arg <val>` therefore the call at this location should not force a space, as that will fail on tools using `=`, as this becomes: `--arg= <val>` Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
This commit is contained in:
parent
aefec97d0f
commit
2d1a3d966f
|
@ -1503,8 +1503,8 @@ if(CONFIG_OUTPUT_STAT)
|
|||
COMMAND $<TARGET_PROPERTY:bintools,readelf_command>
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag>
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag_headers>
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag_infile> ${KERNEL_ELF_NAME}
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag_outfile> ${KERNEL_STAT_NAME}
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag_infile>${KERNEL_ELF_NAME}
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag_outfile>${KERNEL_STAT_NAME}
|
||||
$<TARGET_PROPERTY:bintools,readelf_flag_final>
|
||||
)
|
||||
list(APPEND
|
||||
|
|
Loading…
Reference in a new issue