diff options
author | Martin Mares <mj@ucw.cz> | 2017-07-18 23:48:25 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-07-19 13:46:48 +0200 |
commit | b4a33e21ea3a8d23dee3ed23a515cc7430a38643 (patch) | |
tree | dddc19ce811cec1c0c5b99c5e14cff360028a460 /configure.ac | |
parent | a1f5e514ef091b82754f38f0e583af40778c7d97 (diff) |
Configure: Fix a typo in checking of backtrace()
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9e375762..5514fb56 100644 --- a/configure.ac +++ b/configure.ac @@ -314,7 +314,7 @@ if test "$enable_debug" = yes ; then [ AC_DEFINE([HAVE_EXECINFO_H], [1], [Define to 1 if you have the <execinfo.h> header file.]) AC_SEARCH_LIBS([backtrace], [execinfo], - [] + [], [AC_MSG_ERROR([Function backtrace not available.])] ) ] |