diff options
| author | Jan Malakhovski <oxij@oxij.org> | 2017-08-31 11:46:34 +0000 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-08-31 10:09:02 -0300 |
| commit | 46bda291ba6b73266f6e48a539af7772a4d09edf (patch) | |
| tree | 3613feaffdc9aa6993d12d74f5ee74ba7ecd83e3 /configure | |
| parent | b52e1e0f1db139cb26e1f9f276918f05d33925e2 (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-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |
