diff options
author | Brian Behlendorf <[email protected]> | 2010-03-26 15:21:06 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2010-03-26 15:41:17 -0700 |
commit | 8934764e6049d1eebae3eca8af99b8ee7140c0ab (patch) | |
tree | 1d47c799047f2b323c982d9107d4c711f0624cc3 /configure.ac | |
parent | 16b719f0066047aaf404756a0b4fe8c74eec6a2a (diff) |
Add support for 'make -s' silent builds
The cleanest way to do this is to set AM_LIBTOOLFLAGS = --silent. However,
AM_LIBTOOLFLAGS is not honored by automake-1.9.6-2.1 which is what I have
been using. To cleanly handle this I am updating to automake-1.11-3 which
is why it looks like there is a lot of churn in the Makefiles.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4efd1c642..0fa9ebf90 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,7 @@ SPL_AC_META AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_SYSTEM AM_MAINTAINER_MODE +AM_SILENT_RULES AM_INIT_AUTOMAKE([$SPL_META_NAME], [$SPL_META_VERSION]) AC_CONFIG_HEADERS([spl_config.h], [ (mv spl_config.h spl_config.h.tmp && |