]> git.ipfire.org Git - thirdparty/xtables-addons.git/commitdiff
build: do not hard-code `AM_DEFAULT_VERBOSITY` in Makefile.iptrules
authorJeremy Sowden <jeremy@azazel.net>
Fri, 18 Aug 2023 12:38:17 +0000 (14:38 +0200)
committerJan Engelhardt <jengelh@inai.de>
Fri, 18 Aug 2023 14:56:31 +0000 (16:56 +0200)
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@azazel.net>
Makefile.iptrules.in

index 28feeb477e357871bddd1e6a1fd8396a5faa0579..b0588d45f0265dfc0281a001ac7d13ed5a751d7e 100644 (file)
@@ -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     " $@;