diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2015-07-21 13:12:19 +0800 |
---|---|---|
committer | Michael Catanzaro <mcatanzaro@gnome.org> | 2016-06-20 15:11:02 -0500 |
commit | bbeac7d3ccc1f5969d85ab0990ea832442d6203f (patch) | |
tree | 9aaa3b3419b0268b4ac595ccd4762bad0921226f | |
parent | 8b447cb3031a626c2ff4f3bed99d3f2bcecae17b (diff) | |
download | yelp-xsl-bbeac7d3ccc1f5969d85ab0990ea832442d6203f.tar.gz |
Makefile: Move to AM_DISTCHECK_CONFIGURE_FLAGS
Since automake 1.11.2 it is recommended that packages
use AM_DISTCHECK_CONFIGURE_FLAGS instead of
DISTCHECK_CONFIGURE_FLAGS as the latter is intended
to be a user variable.
[endlessm/eos-sdk#3303]
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index ccef2536..761a330b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,7 @@ DISTCLEANFILES = \ intltool-merge \ intltool-update -DISTCHECK_CONFIGURE_FLAGS = --enable-doc +AM_DISTCHECK_CONFIGURE_FLAGS = --enable-doc ChangeLog: @if test -f $(top_srcdir)/.git/HEAD; then \ diff --git a/configure.ac b/configure.ac index d06cee75..8f2f97f1 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_INIT([yelp-xsl],[3.17.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=ye AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([1.10 no-dist-gzip dist-bzip2]) +AM_INIT_AUTOMAKE([1.11.2 no-dist-gzip dist-bzip2]) # Check for programs dnl In the interest of portability, we don't use GNU awk extensions, |