diff options
-rwxr-xr-x | configure | 8 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 6 insertions, 6 deletions
@@ -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]) |