From 5436f0c5283f835026f1a7b044ee714e6f341ce3 Mon Sep 17 00:00:00 2001 Message-Id: <5436f0c5283f835026f1a7b044ee714e6f341ce3.1715631689.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 9 Aug 2017 11:09:53 +0100 Subject: [PATCH] Makefile.am: Tweak `silent-rules' machinery. Organization: Straylight/Edgeware From: Mark Wooding Since Automake 1.11, the advice for setting up custom silent-rules recipes has changed, so use the new machinery. Also, I'm no longer mainly working on wheezy, and Automake has made the operation field two spaces wider while I wasn't looking, so make the output line up properly. This means that Yaid now requires Automake 1.11.2 or later to build from the Git tree. --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index fb4ea27..763899e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,9 +42,9 @@ SUBSTITUTIONS = \ prefix=$(prefix) exec_prefix=$(exec_prefix) \ sysconfdir=$(sysconfdir) -V_SUBST = $(V_SUBST_$(V)) -V_SUBST_ = $(V_SUBST_$(AM_DEFAULT_VERBOSITY)) -V_SUBST_0 = @echo " SUBST $@"; +V_SUBST = $(V_SUBST_@AM_V@) +V_SUBST_ = $(V_SUBST_@AM_DEFAULT_V@) +V_SUBST_0 = @echo " SUBST $@"; SUBST = $(V_SUBST)$(confsubst) ###-------------------------------------------------------------------------- -- [mdw]