summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-12-07 16:56:19 +0100
committerDan McGee <dan@archlinux.org>2011-12-07 16:59:27 +0100
commit48188fbeee8bc39977bc2a0200dc5fb538db9ff1 (patch)
tree666abef917239f83e6a7a4db5c3a578a8490f40c /configure.ac
parent1d98c6347c9622d4334f80fc59623da524b4f37b (diff)
downloadpacman-48188fbeee8bc39977bc2a0200dc5fb538db9ff1.tar.gz
pacman-48188fbeee8bc39977bc2a0200dc5fb538db9ff1.tar.xz
Add 'silent-rules' to automake setup in configure.ac
This is awesome, and I don't know why we haven't already done this. It gives us the much more less verbose make output in a few different ways: * If you run `make V=0`, you will get the quiet output. * If you run `./configure --enable-silent-rules`, the quiet output is the default; verbose output can be had by passing V=1 to make. make[3]: Entering directory `/home/dmcgee/projects/pacman/lib/libalpm' CC add.lo CC be_local.lo CC be_package.lo CC be_sync.lo CC delta.lo ..... Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d4ec6779..39e34c8e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -57,7 +57,7 @@ AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
AC_CANONICAL_HOST
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([silent-rules])
LIB_VERSION=`expr lib_current - lib_age`.lib_age.lib_revision
LIB_VERSION_INFO="lib_current:lib_revision:lib_age"