-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
bug 🐛Something isn't workingSomething isn't working
Milestone
Description
There is a regression with build_opt.h generation since 6a167f8
File is simply overwritten instead of being appended to the end of file:
printf '\n-fmacro-prefix-map=%s=.' "${BOARD_PLATFORM_PATH//\\/\\\\}" > "$BUILD_PATH/sketch/build.opt" |
Patch is:
- printf '\n-fmacro-prefix-map=%s=.' "${BOARD_PLATFORM_PATH//\\/\\\\}" > "$BUILD_PATH/sketch/build.opt"
+ printf '\n-fmacro-prefix-map=%s=.' "${BOARD_PLATFORM_PATH//\\/\\\\}" >> "$BUILD_PATH/sketch/build.opt"
Metadata
Metadata
Assignees
Labels
bug 🐛Something isn't workingSomething isn't working