From 3e53823bd3e23502aa716a76debec093bd5dc7d3 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/174 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- configure.ac | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cb0882216..56d545a4f 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,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]) @@ -465,6 +473,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