diff options
author | Michael Forney <mforney@mforney.org> | 2022-02-10 16:11:58 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2022-02-10 16:11:58 -0800 |
commit | 995d5b48b15779b9561aef59e035e34ef5c56839 (patch) | |
tree | fc319cc98ce88683d353e23d36d2c67f54972280 /configure | |
parent | b87140ba9f69819ebfaaa08858756d355f569026 (diff) |
Add -Wno-maybe-uninitialized to prevent false-positive warnings
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -169,7 +169,7 @@ cat >config.mk <<EOF PREFIX=$prefix BINDIR=$bindir CC=${CC:-cc} -CFLAGS=${CFLAGS:--std=c99 -Wall -Wpedantic -Wno-parentheses -Wno-switch -g -pipe} +CFLAGS=${CFLAGS:--std=c99 -Wall -Wpedantic -Wno-parentheses -Wno-switch -Wno-maybe-uninitialized -g -pipe} LDFLAGS=$LDFLAGS EOF echo done |