summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-02-04 13:45:55 +0100
committerMarc-André Lureau <marcandre.lureau@redhat.com>2013-02-04 14:27:44 +0100
commitde342b832c07863205b3431ef61c5e461f0b54f4 (patch)
tree021703d33e5ba4344ee66ef1d45966768b7eb8a9
parenta182bde7d5f5143009d1eac8337f10165882e455 (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.ac2
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])