From: Daiki Ueno Date: Thu, 2 Oct 2014 08:21:30 +0000 (+0900) Subject: tests: Fix autopoint-3 tests with older Automake X-Git-Tag: v0.19.3~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3398edd1e2524c524978c8c667e78658ed1637e;p=thirdparty%2Fgettext.git tests: Fix autopoint-3 tests with older Automake * autopoint-3: Invoke AC_CONFIG_MACRO_DIR after AC_INIT, not before. --- diff --git a/gettext-tools/tests/ChangeLog b/gettext-tools/tests/ChangeLog index 9cc43fa43..4abb90d00 100644 --- a/gettext-tools/tests/ChangeLog +++ b/gettext-tools/tests/ChangeLog @@ -1,3 +1,8 @@ +2014-10-02 Daiki Ueno + + * autopoint-3: Invoke AC_CONFIG_MACRO_DIR after AC_INIT, not + before. + 2014-10-01 Daiki Ueno tests: Adjust textdomain directory for Solaris 11 diff --git a/gettext-tools/tests/autopoint-3 b/gettext-tools/tests/autopoint-3 index 5847033f2..8dc1b0cd7 100755 --- a/gettext-tools/tests/autopoint-3 +++ b/gettext-tools/tests/autopoint-3 @@ -53,12 +53,12 @@ gettext_datadir=$top_builddir/misc export gettext_datadir cat <configure.ac -AC_CONFIG_MACRO_DIR([m4]) - AC_INIT([hello], [0.0.0], [bug-gnu-gettext@gnu.org]) AM_INIT_AUTOMAKE([foreign]) LT_INIT +AC_CONFIG_MACRO_DIR([m4]) + AC_PROG_CC AM_GNU_GETTEXT([use-libtool]) AM_GNU_GETTEXT_VERSION([$required_gettext_version])