summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-02-10 11:50:36 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-13 03:26:14 -0500
commit95fab83f3af2e3b54fb59d761b38466344608ed8 (patch)
treed56e02854e7dfde4c0439b78947da7774d1344b0
parent974e73afd519e1189f01ab3e96d3fe0212e74b05 (diff)
downloadhaskell-95fab83f3af2e3b54fb59d761b38466344608ed8.tar.gz
configure: Fix result reporting of adjustors method check
-rw-r--r--m4/ghc_adjustors_method.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/m4/ghc_adjustors_method.m4 b/m4/ghc_adjustors_method.m4
index 3371c3d11d..cae941a20e 100644
--- a/m4/ghc_adjustors_method.m4
+++ b/m4/ghc_adjustors_method.m4
@@ -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])