Skip to content
Success

Changes

Summary

  1. gcc/Makefile: set shell: bash -o pipefail -e (details)
Commit 7f037f2cb470aea673e8e1db76cad3900e4b32a8 by Oliver Smith
gcc/Makefile: set shell: bash -o pipefail -e

Don't ignore errors from commands piped into others, like in this line
in the Makefile that has been added in aaec8734 ("add fw update
crcstub"):

  printf $$CRC_HEX | xxd -r -p | xxd -e | xxd -r | dd of=$(OUTPUT_FILE_NAME)-dfu.bin bs=1 seek=$$CRC_CHECKSUM_OFFSET conv=notrunc 2>/dev/null; \

Change-Id: I9459f63828eab461607fa9f226716d32ae898549
The file was modifiedgcc/Makefile