diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2013-02-07 22:51:45 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2013-02-07 22:52:53 +0000 |
commit | c3f289e497b56de767bb9ec35feeee6ebfd040d3 (patch) | |
tree | 3e4e20eed25af9e50928cce6c967ca19e5b3aa65 | |
parent | 654c1974349298dada994a957260afad490945d4 (diff) |
build: fix build with automake 1.13
AM_CONFIG_HEADER -> AC_CONFIG_HEADERS
https://bugzilla.gnome.org/show_bug.cgi?id=693373
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4b6cedac3..39e9061da 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ dnl can autoconf find the source ? AC_CONFIG_SRCDIR([gst/law/alaw.c]) dnl define the output header for config -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) dnl AM_MAINTAINER_MODE only provides the option to configure to enable it AM_MAINTAINER_MODE([enable]) |