Skip to content
Snippets Groups Projects
Commit f9a51a21 authored by Iustin Pop's avatar Iustin Pop
Browse files

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: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarAdeodato Simo <dato@google.com>
parent 93be1ced
No related branches found
No related tags found
No related merge requests found
...@@ -575,7 +575,7 @@ if test "$HTOOLS" != "yes" && test "$ENABLE_CONFD" = "True"; then ...@@ -575,7 +575,7 @@ if test "$HTOOLS" != "yes" && test "$ENABLE_CONFD" = "True"; then
fi fi
AM_CONDITIONAL([WANT_HTOOLS], [test x$HTOOLS = xyes]) 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([WANT_HTOOLSAPIDOC], [test x$HTOOLS_APIDOC = xyes])
AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"]) AM_CONDITIONAL([HAS_HLINT], [test "$HLINT"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment