diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-07-06 16:01:22 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-07-06 16:01:22 +0200 |
commit | 0adcd1bd939cb94691b15e585623b768041c058c (patch) | |
tree | bd5a7ee487bd8b237e0d76e651591f64e763b814 | |
parent | 37a5970c19ca7ad2b5de2f667748c840c199f878 (diff) | |
download | guile-0adcd1bd939cb94691b15e585623b768041c058c.tar.gz |
configure: Build a `tar.xz' in addition to `tar.gz'.
* configure.ac: Explicitly require Automake 1.11. Add Automake option
`dist-xz'.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cf31cfebc..b629f5c3d 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,8 @@ AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR(GUILE-VERSION) -AM_INIT_AUTOMAKE([gnu no-define -Wall -Wno-override]) +dnl `AM_SUBST_NOTMAKE' was introduced in Automake 1.11. +AM_INIT_AUTOMAKE([1.11 gnu no-define -Wall -Wno-override dist-xz]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY],1)]) AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT) |