From: Daiki Ueno Date: Tue, 25 Jun 2013 09:53:52 +0000 (+0900) Subject: Fix commit 417f0080823ae17d0f258ec08f3810cd0274e021. X-Git-Tag: v0.18.3~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9e98a031a0d3b0988aecbfcbd83066f33f0f9b1;p=thirdparty%2Fgettext.git Fix commit 417f0080823ae17d0f258ec08f3810cd0274e021. AM_CONFIG_HEADER obsoletion (commit 0cde5e7f) has been mistakenly reverted when merging the patch. --- diff --git a/gettext-runtime/configure.ac b/gettext-runtime/configure.ac index 8b04c2b44..dcfd27a66 100644 --- a/gettext-runtime/configure.ac +++ b/gettext-runtime/configure.ac @@ -23,7 +23,7 @@ AC_CONFIG_AUX_DIR([../build-aux]) . $srcdir/../version.sh gl_INIT_PACKAGE([gettext-runtime], [$VERSION_NUMBER]) AM_INIT_AUTOMAKE([1.11.1 silent-rules parallel-tests]) -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) dnl Installation directories. test "$docdir" != '${datarootdir}/doc/${PACKAGE}' || docdir='${datarootdir}/doc/gettext' diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index 1a522bbb7..70cf41119 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -23,7 +23,7 @@ AC_CONFIG_AUX_DIR([../build-aux]) . $srcdir/../version.sh gl_INIT_PACKAGE([gettext-tools], [$VERSION_NUMBER]) AM_INIT_AUTOMAKE([1.11.1 silent-rules parallel-tests]) -AM_CONFIG_HEADER([config.h]) +AC_CONFIG_HEADERS([config.h]) dnl Installation directories. test "$docdir" != '${datarootdir}/doc/${PACKAGE}' || docdir='${datarootdir}/doc/gettext'