From a2d4ed5c71835ad2c327bd9ad52de9abde613247 Mon Sep 17 00:00:00 2001 From: Alexander Huemer Date: Mon, 23 May 2011 19:04:50 +0200 Subject: [PATCH] configure.ac: use AM_SILENT_RULES if available M_SILENT_RULES improves readability of the messages emitted by make, compiler warnings are easier to spot. Available since automake-1.11, ignored on earlier versions. Traditional verbose output can be forced by "./configure --disable-silent-rules" or "make V=1" Written-by: Alexander Huemer Signed-off-by: Sylvain Munaut --- public-trunk/configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public-trunk/configure.ac b/public-trunk/configure.ac index 3b85066..af280a2 100644 --- a/public-trunk/configure.ac +++ b/public-trunk/configure.ac @@ -30,6 +30,9 @@ AC_CANONICAL_TARGET AM_INIT_AUTOMAKE +dnl Linux kernel KBuild style compile messages +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + AM_PROG_AS AC_PROG_CXX AC_PROG_LN_S