diff options
author | Anand Avati <avati@gluster.com> | 2011-08-05 14:52:01 +0530 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-08-05 02:27:54 -0700 |
commit | 3e53823bd3e23502aa716a76debec093bd5dc7d3 (patch) | |
tree | c0fb660ca2fe28ac926ea0e7f909f311c76b90d9 | |
parent | cff2fa886916eb4e7e471f418ce925ea3ae14217 (diff) |
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 <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@gluster.com>
-rw-r--r-- | configure.ac | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cb088221628..56d545a4f9e 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) |