summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2023-01-03 17:14:48 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2023-01-03 17:14:48 +0100
commit309c874f9c8b217dbed1569c73b4a3035f5cb170 (patch)
tree0476231ef6c3792df5c94687062339c03afd248a
parentb28431e557c4f63923476094a919a0630001275e (diff)
Configure: Expensive check option was broken, never worked
-rw-r--r--configure.ac2
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