summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure8
-rw-r--r--configure.ac4
2 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 5006a12..9a43b70 100755
--- a/configure
+++ b/configure
@@ -15697,8 +15697,8 @@ if test "${enable_https+set}" = set; then :
case "${enableval}" in
no|yes|auto)
https_support=$enableval
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enableval" >&5
-$as_echo "$enableval" >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $https_support" >&5
+$as_echo "$https_support" >&6; }
;;
*)
as_fn_error expected yes/no/auto "bad value for https" "$LINENO" 5
@@ -15708,8 +15708,8 @@ $as_echo "$enableval" >&6; }
else
https_support=yes
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $https_support=" >&5
-$as_echo "$https_support=" >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $https_support" >&5
+$as_echo "$https_support" >&6; }
fi
diff --git a/configure.ac b/configure.ac
index 2acc473..df6e3f3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -130,7 +130,7 @@ AC_ARG_ENABLE([https],
case "${enableval}" in
no|yes|auto)
https_support=$enableval
- AC_MSG_RESULT($enableval)
+ AC_MSG_RESULT($https_support)
;;
*)
AC_MSG_ERROR(bad value for https, expected yes/no/auto)
@@ -139,7 +139,7 @@ AC_ARG_ENABLE([https],
],
[
https_support=yes
- AC_MSG_RESULT($https_support=)
+ AC_MSG_RESULT($https_support)
])
if test x"$https_support" = x"no"; then
AC_MSG_NOTICE([disabling https support])