diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-09-17 17:52:49 -0400 |
---|---|---|
committer | Zubin <zubin.duggal@gmail.com> | 2021-10-11 15:39:42 +0000 |
commit | 65f4d9426f789ed6660041316307f1b43bc98349 (patch) | |
tree | b071a166f15872c97a5cbe704f3a8c224cae700c | |
parent | 3e900b64e371db94d39842bd29e880622899b0e0 (diff) | |
download | haskell-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.ac | 2 |
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) |