Skip to content
Snippets Groups Projects
Commit 95fab83f authored by Ben Gamari's avatar Ben Gamari Committed by Marge Bot
Browse files

configure: Fix result reporting of adjustors method check

parent 974e73af
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,6 @@ AC_DEFUN([GHC_ADJUSTORS_METHOD],
)
AC_MSG_CHECKING([whether to use libffi for adjustors])
AC_MSG_RESULT([$UseLibffiForAdjustors])
if test "$UseLibffiForAdjustors" = "yes" ; then
# Use libffi is the user explicitly requested it
AdjustorType="libffi"
......@@ -37,9 +36,11 @@ AC_DEFUN([GHC_ADJUSTORS_METHOD],
case "$AdjustorType" in
libffi)
UseLibffiForAdjustors=YES
AC_MSG_RESULT([yes])
;;
native)
UseLibffiForAdjustors=NO
AC_MSG_RESULT([no])
;;
*)
AC_MSG_ERROR([Internal error: Invalid AdjustorType])
......
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