From 22742e7af52fe652d42a77767a90f1a6d3cc18d5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 18 Jan 2013 12:34:38 +0000 Subject: [PATCH] build: fix autogen.sh with automake 1.13 AM_CONFIG_HEADER -> AC_CONFIG_HEADERS --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a26f792..a680b76 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ dnl can autoconf find the source ? AC_CONFIG_SRCDIR([omx/gstomx.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]) -- 2.7.4