build: remove a redundant call to 'str()'

west.configuration.get() already returns a string, no need to call
'str()' on it again.

Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
This commit is contained in:
Guennadi Liakhovetski 2024-05-07 12:48:48 +02:00 committed by Liam Girdwood
parent 05e69e1bb9
commit 89d90ae0af
1 changed files with 1 additions and 1 deletions

View File

@ -934,7 +934,7 @@ def install_lib(sof_lib_dir, abs_build_dir, platform_wconfig):
llext_input = entry_path / (llext_base + '.llext')
llext_output = entry_path / (llext_file + '.ri')
sign_cmd = [str(platform_wconfig.get("rimage.path")), "-o", str(llext_output),
sign_cmd = [platform_wconfig.get("rimage.path"), "-o", str(llext_output),
"-e", "-c", str(rimage_cfg),
"-k", str(signing_key), "-l", "-r",
str(llext_input)]