diff options
author | Guillem Jover <guillem@hadrons.org> | 2009-10-08 13:40:09 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2009-10-09 14:57:51 +0200 |
commit | eb35c251749f5d0be06234ec70a0b7a075e5d880 (patch) | |
tree | 3f035e62e48a3f70fd8585e450f6a5a9e2478af4 /configure.ac | |
parent | e79829db464dece64a698f913c98154a4bf7db0b (diff) | |
download | util-linux-old-eb35c251749f5d0be06234ec70a0b7a075e5d880.tar.gz |
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 <guillem@hadrons.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
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]) |