diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-02-04 13:45:55 +0100 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2013-02-04 14:27:44 +0100 |
commit | de342b832c07863205b3431ef61c5e461f0b54f4 (patch) | |
tree | 021703d33e5ba4344ee66ef1d45966768b7eb8a9 | |
parent | a182bde7d5f5143009d1eac8337f10165882e455 (diff) |
build: fix for automake-1.13
Use AC_CONFIG_HEADER instead of deprecated AM_CONFIG_HEADER.
Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e8a4ddd..2a5c72c 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_INIT([spice-gtk], [m4_esyscmd(build-aux/git-version-gen .tarball-version)], [spice-devel@lists.freedesktop.org]) AC_CONFIG_MACRO_DIR([m4]) -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADER([config.h]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign dist-bzip2 -Wall -Werror]) |