diff options
author | Leah Rowe <leah@libreboot.org> | 2024-12-31 00:11:26 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-12-31 00:12:21 +0000 |
commit | d344cd95eac4be79efc6cb2ebbed788519f69cb3 (patch) | |
tree | 9879ccfa88853556c41a41a98fcc90ec4cf3b03b /config | |
parent | dc95e912bfe6b7a360916ab409be2de5b9b16eeb (diff) |
flashprog: Disable -Werror
We haven't seen any build errors, but it seems flashprog
sets -Werror on CFLAGS. If you provide WARNERROR=no as
a make argument, it avoids -Werror entirely.
This is a preventative fix, for over-zealous compilers.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/flashprog/target.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/flashprog/target.cfg b/config/flashprog/target.cfg new file mode 100644 index 00000000..2d9243b7 --- /dev/null +++ b/config/flashprog/target.cfg @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-3.0-or-later + +makeargs="WARNERROR=no" |