diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-12-10 21:04:53 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-02-01 19:58:19 +1300 |
commit | 805fb9e1e028140d266e7ca5036bea9292545708 (patch) | |
tree | 1af187aff36a185bcf8029cf2c2e5677bbc12532 /configure.ac | |
parent | 30316cd27ab0a6f8cb2a96771661fc88e1b05a6b (diff) | |
download | crosstool-ng-805fb9e1e028140d266e7ca5036bea9292545708.tar.gz crosstool-ng-805fb9e1e028140d266e7ca5036bea9292545708.tar.bz2 crosstool-ng-805fb9e1e028140d266e7ca5036bea9292545708.zip |
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>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 81517371..c4964df3 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) |