aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2022-02-10 16:11:58 -0800
committerMichael Forney <mforney@mforney.org>2022-02-10 16:11:58 -0800
commit995d5b48b15779b9561aef59e035e34ef5c56839 (patch)
treefc319cc98ce88683d353e23d36d2c67f54972280 /configure
parentb87140ba9f69819ebfaaa08858756d355f569026 (diff)
Add -Wno-maybe-uninitialized to prevent false-positive warnings
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index fe5688a..6185c13 100755
--- a/configure
+++ b/configure
@@ -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