From f9a51a213d304140368a7c5b2c4c7d822eedf5b9 Mon Sep 17 00:00:00 2001 From: Iustin Pop <iustin@google.com> Date: Wed, 17 Oct 2012 18:50:58 +0200 Subject: [PATCH] Fix running of Haskell tests Commit 21a5e56c forgot to rename a variable used in a conditional (of course shell didn't complain about unused vars), so the AM_CONDITIONAL was always false. Signed-off-by: Iustin Pop <iustin@google.com> Reviewed-by: Adeodato Simo <dato@google.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cb1eb6dda..3d7eaa343 100644 --- a/configure.ac +++ b/configure.ac @@ -575,7 +575,7 @@ if test "$HTOOLS" != "yes" && test "$ENABLE_CONFD" = "True"; then fi AM_CONDITIONAL([WANT_HTOOLS], [test x$HTOOLS = xyes]) -AM_CONDITIONAL([WANT_HTOOLSTESTS], [test "x$GHC_PKG_QUICKCHECK" != x]) +AM_CONDITIONAL([WANT_HTOOLSTESTS], [test "x$HTOOLS_NODEV" = x]) AM_CONDITIONAL([WANT_HTOOLSAPIDOC], [test x$HTOOLS_APIDOC = xyes]) AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"]) -- GitLab