diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-03 17:14:48 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-01-03 17:14:48 +0100 |
commit | 309c874f9c8b217dbed1569c73b4a3035f5cb170 (patch) | |
tree | 0476231ef6c3792df5c94687062339c03afd248a /configure.ac | |
parent | b28431e557c4f63923476094a919a0630001275e (diff) |
Configure: Expensive check option was broken, never worked
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 f8ab1537..d73eec28 100644 --- a/configure.ac +++ b/configure.ac @@ -410,7 +410,7 @@ if test "$enable_debug" = yes ; then fi fi - if test "enable_debug_expensive" = yes ; then + if test "$enable_debug_expensive" = yes ; then AC_DEFINE([ENABLE_EXPENSIVE_CHECKS], [1], [Define to 1 if you want to run expensive consistency checks.]) fi fi |