From: Guillem Jover Date: Thu, 8 Oct 2009 11:40:09 +0000 (+0200) Subject: build-sys: enable silent rules if automake >= 1.11 X-Git-Tag: v2.17-rc1~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb35c251749f5d0be06234ec70a0b7a075e5d880;p=thirdparty%2Futil-linux.git build-sys: enable silent rules if automake >= 1.11 Make the build silent if the system has a new enough automake, otherwise keep the current behaviour. Signed-off-by: Guillem Jover --- diff --git a/configure.ac b/configure.ac index 6784112875..ed3c3b07cb 100644 --- a/configure.ac +++ b/configure.ac @@ -7,6 +7,9 @@ AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([check-news -Wall foreign 1.9 dist-bzip2]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], + [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]) + AC_CONFIG_SRCDIR(mount/mount.c) AC_PREFIX_DEFAULT([/usr])