From 59d0e78efe5ea301ec1731bce8e3cae1dd70d154 Mon Sep 17 00:00:00 2001 Message-Id: <59d0e78efe5ea301ec1731bce8e3cae1dd70d154.1713482390.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 12 Feb 2012 23:10:52 +0000 Subject: [PATCH] Makefile.am: Distinctive `SUBST' indicator for `confsubst' rules. Organization: Straylight/Edgeware From: Mark Wooding Rather than use the generic `GEN' indicator. --- Makefile.am | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 1d362c8..2a33276 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,7 +54,11 @@ SUBSTVARS = \ pkglibdir="$(pkglibdir)" \ user="$(user)" -SUBST = $(AM_V_GEN)$(confsubst) +V_SUBST = $(V_SUBST_$V) +V_SUBST_= $(V_SUBST_$(AM_DEFAULT_VERBOSITY)) +V_SUBST_0 = @printf " SUBST %s\n" $@; + +SUBST = $(V_SUBST)$(confsubst) ###-------------------------------------------------------------------------- ### Utility programs. -- [mdw]