From eb35c251749f5d0be06234ec70a0b7a075e5d880 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 8 Oct 2009 13:40:09 +0200 Subject: [PATCH] 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 --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 67841128..ed3c3b07 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]) -- 2.39.5