extract_utils: disable strip for ELF binaries as well

* Just like we do for libraries
* Without this some binaries might break

Change-Id: Ida82f5ee35f02112eb3a35be66c2f7e1642d56b1
This commit is contained in:
Tim Zimmermann
2021-12-23 09:26:54 +01:00
committed by Paul Keith
parent 91767c5d9b
commit 75bcf7f337

View File

@@ -503,6 +503,9 @@ function write_blueprint_packages() {
printf '\tsrcs: ["%s/%s"],\n' "$SRC" "$FILE"
if [ "$EXTENSION" != "sh" ]; then
printf '\tcheck_elf_files: false,\n'
printf '\tstrip: {\n'
printf '\t\tnone: true,\n'
printf '\t},\n'
fi
unset EXTENSION
else