diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-09-17 17:52:49 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-23 16:00:18 -0400 |
commit | 0282706681ccc7748082c8ada61a7ca916fcc820 (patch) | |
tree | 69b38c6ec130207444b7f3384e0c9591db3facdf /configure.ac | |
parent | 98a3014777a0ac1a99fd66919115ab770d14e0f4 (diff) | |
download | haskell-0282706681ccc7748082c8ada61a7ca916fcc820.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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4ebd8f45ea..84d7e0fd87 100644 --- a/configure.ac +++ b/configure.ac @@ -1082,7 +1082,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) |