diff options
author | Alberto Garcia <agarcia@igalia.com> | 2013-06-01 00:15:28 +0800 |
---|---|---|
committer | Alberto Garcia <agarcia@igalia.com> | 2013-06-01 00:16:15 +0800 |
commit | f54b91d3e3ada71fe8b50b771610fac771cb2ca0 (patch) | |
tree | 3b348004f3a3674b3a82929901537554a3aa8e96 | |
parent | d54a6f68f9de5f851fe53d0e2f87915e28069b01 (diff) | |
download | gsoc2013-epiphany-f54b91d3e3ada71fe8b50b771610fac771cb2ca0.tar.gz gsoc2013-epiphany-f54b91d3e3ada71fe8b50b771610fac771cb2ca0.tar.zst gsoc2013-epiphany-f54b91d3e3ada71fe8b50b771610fac771cb2ca0.zip |
configure.ac: require automake 1.11
The dist-xz option is not present in earlier versions
-rwxr-xr-x | autogen.sh | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index d3303aed7..002c1c830 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,7 +18,7 @@ which gnome-autogen.sh || { exit 1 } -REQUIRED_AUTOMAKE_VERSION=1.9 +REQUIRED_AUTOMAKE_VERSION=1.11 REQUIRED_LIBTOOL_VERSION=2.2 REQUIRED_INTLTOOL_VERSION=0.40.4 . gnome-autogen.sh diff --git a/configure.ac b/configure.ac index 5f61a556f..2ebd5ca59 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ AC_SUBST([EPIPHANY_MAJOR_VERSION], [epiphany_version_major]) AC_SUBST([EPIPHANY_MINOR_VERSION], [epiphany_version_minor]) AC_SUBST([EPIPHANY_MICRO_VERSION], [epiphany_version_micro]) -AM_INIT_AUTOMAKE([1.9 foreign dist-xz no-dist-gzip tar-ustar]) +AM_INIT_AUTOMAKE([1.11 foreign dist-xz no-dist-gzip tar-ustar]) # Use AM_SILENT_RULES if present m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |