From 78b5454bcda1ba807af0efe7256f37e80c9e2e42 Mon Sep 17 00:00:00 2001 From: Jeremy Sowden Date: Fri, 18 Aug 2023 14:38:16 +0200 Subject: [PATCH] build: update `AM_V_*` definitions to match autotools Follow the automake documentation and use autoconf substitution variables. Add a couple of extra trailing spaces to match the definitions generated by automake. Signed-off-by: Jeremy Sowden --- Makefile.iptrules.in | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.iptrules.in b/Makefile.iptrules.in index f2f202a..28feeb4 100644 --- a/Makefile.iptrules.in +++ b/Makefile.iptrules.in @@ -18,15 +18,15 @@ libxtables_LIBS = @libxtables_LIBS@ AM_DEPFLAGS = -Wp,-MMD,$(@D)/.$(@F).d,-MT,$@ AM_DEFAULT_VERBOSITY = 0 -am__v_CC_0 = @echo " CC " $@; -am__v_CCLD_0 = @echo " CCLD " $@; -am__v_GEN_0 = @echo " GEN " $@; -am__v_CC_ = ${am__v_CC_${AM_DEFAULT_VERBOSITY}} -am__v_CCLD_ = ${am__v_CCLD_${AM_DEFAULT_VERBOSITY}} -am__v_GEN_ = ${am__v_GEN_${AM_DEFAULT_VERBOSITY}} -AM_V_CC = ${am__v_CC_${V}} -AM_V_CCLD = ${am__v_CCLD_${V}} -AM_V_GEN = ${am__v_GEN_${V}} +am__v_CC_0 = @echo " CC " $@; +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_GEN_0 = @echo " GEN " $@; +am__v_CC_ = ${am__v_CC_@AM_DEFAULT_V@} +am__v_CCLD_ = ${am__v_CCLD_@AM_DEFAULT_V@} +am__v_GEN_ = ${am__v_GEN_@AM_DEFAULT_V@} +AM_V_CC = ${am__v_CC_@AM_V@} +AM_V_CCLD = ${am__v_CCLD_@AM_V@} +AM_V_GEN = ${am__v_GEN_@AM_V@} include ${XA_TOPSRCDIR}/mconfig -include ${XA_TOPSRCDIR}/mconfig.* -- 2.47.2