From: Jeremy Sowden Date: Fri, 18 Aug 2023 12:38:17 +0000 (+0200) Subject: build: do not hard-code `AM_DEFAULT_VERBOSITY` in Makefile.iptrules X-Git-Tag: v3.25~3 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=c2de0fb7d277ff2c2e1c15be420dda1420b366ea;p=thirdparty%2Fxtables-addons.git 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 --- 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 " $@;