From: Pierre d'Herbemont Date: Tue, 18 Aug 2009 13:09:05 +0000 (+0200) Subject: am: Pass --quiet to 'make' when automake verbose mode is off. X-Git-Tag: 1.1.0-ff~4283 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ed7b4fcd757f7bab68da7cd36be5cd6ae0e91563;hp=4fd41d71393f627f94c48f8d867f0a8e2da34902;p=vlc am: Pass --quiet to 'make' when automake verbose mode is off. --- diff --git a/Makefile.am b/Makefile.am index 3bab207b29..b90bc37e9b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,11 @@ # Automake targets and declarations ############################################################################### +# Pass --quiet to make when we are not verbose. +AM_MAKEFLAGS = $(makesilentflags_$(V)) +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 # which have makefiles with distribution information.