diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-04-01 15:02:52 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-04-01 15:02:52 +0100 |
| commit | 5b465d3af6d61c3a1dc69d727948bef470b7be46 (patch) | |
| tree | 5bf6a4cb829d392af536a82c6450e37fb01ff47c | |
| parent | 9dc141bafa96a4c78e4783d3cba5bdc990717268 (diff) | |
lbutils: remove -Werror
the actual warn flags are still there.
leaving Werror in production is ill advised.
i can (and will) still fix build errors as
i see them.
as a result of this, i now also see more info
when i type:
make strict
(this uses clang with -Weverything)
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | util/libreboot-utils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/libreboot-utils/Makefile b/util/libreboot-utils/Makefile index ada729d8..92e8a3a6 100644 --- a/util/libreboot-utils/Makefile +++ b/util/libreboot-utils/Makefile @@ -8,7 +8,7 @@ CC = cc HELLCC = clang -CFLAGS = -Os -Wall -Wextra -std=c99 -pedantic -Werror +CFLAGS = -Os -Wall -Wextra -std=c99 -pedantic LDFLAGS = DESTDIR = PREFIX = /usr/local |
