Commit 12c920a3545ea1f18a20d1a2f46f01b0f744b300, with updated bootstrap script broke the build, as the new script is checking for AC_CONFIG_HEADERS.
* configure.ac: Use AC_CONFIG_HEADERS instead of deprecated AM_CONFIG_HEADER. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index d9304aa..3843363 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ AC_INIT([GNU inetutils], AC_CONFIG_SRCDIR([src/inetd.c]) AC_CONFIG_AUX_DIR([build-aux]) -AM_CONFIG_HEADER([config.h:config.hin]) +AC_CONFIG_HEADERS([config.h:config.hin]) AC_CANONICAL_HOST AM_INIT_AUTOMAKE([1.11]) -- 1.7.7
