From c2de0fb7d277ff2c2e1c15be420dda1420b366ea Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Fri, 18 Aug 2023 14:38:17 +0200 Subject: [PATCH] build: do not hard-code `AM_DEFAULT_VERBOSITY` in Makefile.iptrules Currently it is set to zero, which means that the default in Makefile.iptrules is not consistent with that in the other Makefiles, and passing `--disable-silent-rules` to configure cannot be used to change it. Set it to `@AM_DEFAULT_VERBOSITY@` instead, which will be expanded to the appropriate default value. Signed-off-by: Jeremy Sowden --- Makefile.iptrules.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.iptrules.in b/Makefile.iptrules.in index 28feeb4..b0588d4 100644 --- a/Makefile.iptrules.in +++ b/Makefile.iptrules.in @@ -15,9 +15,9 @@ LDFLAGS = @LDFLAGS@ libxtables_CFLAGS = @libxtables_CFLAGS@ libxtables_LIBS = @libxtables_LIBS@ -AM_DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@ +AM_DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@ -AM_DEFAULT_VERBOSITY = 0 +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ am__v_CC_0 = @echo " CC " $@; am__v_CCLD_0 = @echo " CCLD " $@; am__v_GEN_0 = @echo " GEN " $@; -- 2.47.2