diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-04-08 10:42:48 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-08 10:42:48 +0200 |
commit | 032c7c5f78d969467252b7aa38d805d7fcca7230 (patch) | |
tree | f3e542c6f181dfecb7f9f7ed08914a5384597719 /configure.ac | |
parent | 1dccdb758a1adf0dd54a639478f9d541c151b48d (diff) | |
download | guix-032c7c5f78d969467252b7aa38d805d7fcca7230.tar guix-032c7c5f78d969467252b7aa38d805d7fcca7230.tar.gz |
build: Enable silent rules by default.
* configure.ac: Use 'AM_SILENT_RULES'.
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 f2f803a2cd..6f261cdb63 100644 --- a/configure.ac +++ b/configure.ac @@ -9,6 +9,9 @@ AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects \ color-tests parallel-tests -Woverride]) +# Enable silent rules by default. +AM_SILENT_RULES([yes]) + AC_CONFIG_SRCDIR([guix.scm]) AC_CONFIG_MACRO_DIR([m4]) |