diff options
author | H.Habighorst <tearofadragon@googlemail.com> | 2009-06-23 23:17:39 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-23 23:17:39 +0800 |
commit | 461eb9e6aa231edc12686b94a46b9fb52e04f020 (patch) | |
tree | 03d1323e68adad7fd52a460561a219da983cff3b /configure.ac | |
parent | 639c1b0bfe9eadb4d36ddb373843f1ff72337bd5 (diff) | |
download | gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.tar gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.tar.gz gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.tar.bz2 gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.tar.lz gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.tar.xz gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.tar.zst gsoc2013-evolution-461eb9e6aa231edc12686b94a46b9fb52e04f020.zip |
Bug 586632 – Require automake 1.9
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 5260460841..e5fde04804 100644 --- a/configure.ac +++ b/configure.ac @@ -21,17 +21,13 @@ m4_define([upgrade_revision], [0]) # Autoconf / Automake Initialization AC_PREREQ(2.54) AC_INIT(evolution, [evo_version], http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution) -AM_INIT_AUTOMAKE([gnu]) +AM_INIT_AUTOMAKE([gnu 1.9]) AC_CONFIG_HEADERS(config.h) AC_CONFIG_SRCDIR(README) # Gnome Doc Initialization GNOME_DOC_INIT -# Gross hack to enable 'make dist' on automake 1.9+tar 1.14. -# The extra brackets are to foil regex-based scans. -m4_ifdef([_A][M_PROG_TAR],[_A][M_SET_OPTION([tar-ustar])]) - # Some requirements have versioned package names # XXX In the spirit of getting rid of versioned # files, can we please drop these suffixes? |