From ceeca912cddf986c4da22e7c097c1f40a8e0c1df Mon Sep 17 00:00:00 2001 From: "Carlos R. Mafra" Date: Mon, 17 Aug 2009 16:49:22 +0200 Subject: [PATCH] Make compilation even less verbose Add "-s" flag to MAKEFLAGS if --disable-verbose-compile is enabled. --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index 1783a72e..6b866fec 100644 --- a/configure.ac +++ b/configure.ac @@ -393,9 +393,11 @@ AC_ARG_ENABLE(verbose-compile, AS_HELP_STRING([--disable-verbose-compile], QUIET='@echo " CC" $@;' QUIET_AR='@echo " AR" $@;' LIBTOOL_ARG="--silent" + MAKEFLAGS="-s" AC_SUBST(QUIET) AC_SUBST(QUIET_AR) AC_SUBST(LIBTOOL_ARG) + AC_SUBST(MAKEFLAGS) ]) -- 2.11.4.GIT