From 460ea0a62b18b67987fc1842432e9698642ee5d7 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Tue, 18 Aug 2009 15:28:34 +0200 Subject: [PATCH] am: Work around old automake version. They don't have AM_DEFAULT_VERBOSITY. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index b90bc37e9b..534536b1c0 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,8 +4,8 @@ # Pass --quiet to make when we are not verbose. AM_MAKEFLAGS = $(makesilentflags_$(V)) -makesilentflags_ = $(makesilentflags_$(AM_DEFAULT_VERBOSITY)) -makesilentflags_0 = --quiet +makesilentflags_ = $(makesilentflags__$(AM_DEFAULT_VERBOSITY)) +makesilentflags__0 = --quiet # SUBDIRS stores the directories where a "make" is required when building # something. DIST_SUBDIRS stores the directories where nothing is built but -- 2.39.5