From 2504d3e11612ad109da223edf88c252b44ac9689 Mon Sep 17 00:00:00 2001 From: Anand Avati Date: Fri, 5 Aug 2011 14:52:01 +0530 Subject: save even more trees make the build even more quiet. make anush even more happy by saving even more trees. Change-Id: I301aba34e4470805114989650a13f9fe35f42d35 BUG: 3255 Reviewed-on: http://review.gluster.com/175 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- configure.ac | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index b08bba902..a8c6e59d9 100644 --- a/configure.ac +++ b/configure.ac @@ -21,7 +21,15 @@ AM_INIT_AUTOMAKE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) if make --help 2>&1 | grep -q no-print-directory; then - AM_MAKEFLAGS="--no-print-directory"; + AM_MAKEFLAGS="$AM_MAKEFLAGS --no-print-directory"; +fi + +if make --help 2>&1 | grep -q quiet; then + AM_MAKEFLAGS="$AM_MAKEFLAGS --quiet" +fi + +if libtool --help 2>&1 | grep -q quiet; then + AM_LIBTOOLFLAGS="--quiet"; fi AM_CONFIG_HEADER([config.h]) @@ -460,6 +468,7 @@ AC_SUBST(GF_LDADD) AC_SUBST(GF_FUSE_CFLAGS) AC_SUBST(RLLIBS) AC_SUBST(AM_MAKEFLAGS) +AC_SUBST(AM_LIBTOOLFLAGS) CONTRIBDIR='$(top_srcdir)/contrib' AC_SUBST(CONTRIBDIR) -- cgit