summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2013-12-09 11:27:38 -0500
committerSteve Dickson <steved@redhat.com>2013-12-09 13:41:13 -0500
commitb8d831e4e482a3b3ab2e383907720e564b014989 (patch)
tree087385bd80a7e7de447ee3acbe5fff1873031678
parent5190a70de9ff9339c8ef0c536cc4d420fb0cdf89 (diff)
downloadti-rpc-b8d831e4e482a3b3ab2e383907720e564b014989.tar.gz
build: Make compiler warnings easier to see
Enable quiet building to make compiler and linker warnings easier to see. After this patch, with "make -s" we get: ... Making all in src CC libtirpc_la-auth_none.lo CC libtirpc_la-auth_unix.lo ... making warnings stand out clearly. Enable this behavior via: ./configure --enable-silent-rules Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c5eb185..21004aa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT(libtirpc, 0.2.3)
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([silent-rules])
AM_MAINTAINER_MODE
AC_CONFIG_SRCDIR([src/auth_des.c])
AC_CONFIG_MACRO_DIR([m4])