configure.ac: Silence make output when building ct-ng

Set AM_SILENT_RULES([yes]) to reduce the verbosity from make by default.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
Chris Packham 2020-12-10 21:04:53 +13:00
parent 30316cd27a
commit 805fb9e1e0

View File

@ -18,6 +18,7 @@ AC_CONFIG_MACRO_DIR([m4])
# - Object files are generated in a subdirectory (new default in automake)
# - Request new tar format (old, tar-v7, breaks on long paths we have)
AM_INIT_AUTOMAKE([-Wall -Werror foreign no-dist-gzip dist-xz dist-bzip2 subdir-objects tar-pax])
AM_SILENT_RULES([yes])
# To avoid stubbing autotools with missing script
AM_MAINTAINER_MODE([enable])