aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2017-08-31 11:46:34 +0000
committerDavid Bremner <david@tethera.net>2017-08-31 10:09:02 -0300
commit46bda291ba6b73266f6e48a539af7772a4d09edf (patch)
tree3613feaffdc9aa6993d12d74f5ee74ba7ecd83e3 /configure
parentb52e1e0f1db139cb26e1f9f276918f05d33925e2 (diff)
build: fix unbound variable in configure
Commentary by db: This missing initialization caused configure to crash, and hence the build to fail in environments without cppcheck.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index 364854f3..c0a550c7 100755
--- a/configure
+++ b/configure
@@ -651,6 +651,7 @@ if command -v cppcheck > /dev/null; then
have_cppcheck=1
printf "Yes.\n"
else
+ have_cppcheck=0
printf "No.\n"
fi