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 <jeremy@xxxxxxxxxx> --- Makefile.iptrules.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.iptrules.in b/Makefile.iptrules.in index 28feeb477e35..b0588d45f026 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.40.1