summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2013-02-14 12:27:01 -0200
committerJohan Hedberg <johan.hedberg@intel.com>2013-03-01 07:53:36 +0200
commit49dcc23f95f11b53fee495226886b0ba0f62e63c (patch)
tree2ebe11222feefb43c23a34e874eaac87ea859b9a
parentdca9b99e54370ddfd5dcc6fd06fef79748900c15 (diff)
downloadsbc-49dcc23f95f11b53fee495226886b0ba0f62e63c.tar.gz
build: Do not use deprecated AM_CONFIG_HEADER
The long-obsoleted AM_CONFIG_HEADER macro was removed in automake 1.13. Use AC_CONFIG_HEADERS instead.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9d5ebdb..30496ad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ(2.60)
AC_INIT(sbc, 1.0)
AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS(config.h)
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])