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.
This commit is contained in:
Lucas De Marchi 2013-01-16 19:11:22 -02:00 committed by Marcel Holtmann
parent e1d5dfe3ae
commit 41a72a874a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ AC_PREREQ(2.60)
AC_INIT(ofono, 1.12)
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])])