diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-04-14 23:19:29 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-14 23:20:18 +0200 |
commit | a84e523c4a470de06ca60478d5ac32289b444b03 (patch) | |
tree | e96c598bbc18bd2751456969e860e41b164d8f95 /configure.ac | |
parent | c3768fa49bc50b14c4bd5964eafc9a04f058b3dd (diff) | |
download | patches-a84e523c4a470de06ca60478d5ac32289b444b03.tar patches-a84e523c4a470de06ca60478d5ac32289b444b03.tar.gz |
build: Silence warnings about 'make' portability.
* configure.ac: Pass -Wno-portability to AM_INIT_AUTOMAKE.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2227c71c1b..5a9cea6fe2 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_INIT([GNU Guix], [0.8.2], [bug-guix@gnu.org], [guix], AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects \ - color-tests parallel-tests -Woverride]) + color-tests parallel-tests -Woverride -Wno-portability]) # Enable silent rules by default. AM_SILENT_RULES([yes]) |