From 8f4fe4503405a965e3274ab70b93d689443aa94a Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 28 Mar 2023 21:02:50 -0700 Subject: [PATCH] configure: Fix missing result message for enable every warning. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 43d28d7a6..b61ecdf99 100644 --- a/configure.ac +++ b/configure.ac @@ -983,6 +983,7 @@ AC_MSG_CHECKING(whether to enable warning discovery) AC_ARG_ENABLE(every-warning, RB_HELP_STRING([--enable-every-warning], [Enable warning discovery (-Weverything)]), [ + AC_MSG_RESULT([yes]) RB_MAYBE_CWARN([-Weverything], charybdis_cv_c_gcc_w_everything) dnl Ignored a priori @@ -1020,6 +1021,8 @@ RB_HELP_STRING([--enable-every-warning], [Enable warning discovery (-Weverything dnl Ignored with issue high priority RB_MAYBE_CWARN([-Wno-reserved-identifier], charybdis_cv_c_gcc_w_no_reserved_identifier) RB_MAYBE_CWARN([-Wno-reserved-macro-identifier], charybdis_cv_c_gcc_w_no_reserved_macro_identifier) +], [ + AC_MSG_RESULT([no]) ]) AM_COND_IF_NOT([UNTUNED],