summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2021-09-17 17:52:49 -0400
committerZubin <zubin.duggal@gmail.com>2021-10-11 15:39:42 +0000
commit65f4d9426f789ed6660041316307f1b43bc98349 (patch)
treeb071a166f15872c97a5cbe704f3a8c224cae700c
parent3e900b64e371db94d39842bd29e880622899b0e0 (diff)
downloadhaskell-65f4d9426f789ed6660041316307f1b43bc98349.tar.gz
configure: Fix copy/paste error
Previously both the --with-system-libffi path and the non--with-system-libffi path set CabalUseSystemLibFFI=True. This was wrong. (cherry picked from commit 0282706681ccc7748082c8ada61a7ca916fcc820)
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 87983802b9..318dc3fe34 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1076,7 +1076,7 @@ AC_ARG_WITH([system-libffi],
AS_IF([test "x$with_system_libffi" = "xyes"],
[UseSystemLibFFI="YES"; CabalUseSystemLibFFI="True"],
- [UseSystemLibFFI="NO"; CabalUseSystemLibFFI="True"]
+ [UseSystemLibFFI="NO"; CabalUseSystemLibFFI="False"]
)
AC_SUBST(UseSystemLibFFI)