tests: one more fixlet for gettext macros requirement
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 24 Dec 2011 08:56:49 +0000 (09:56 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 24 Dec 2011 08:58:01 +0000 (09:58 +0100)
* tests/gettext-macros.test (configure.in): Add calls to
AC_INIT and AC_PROG_CC, to avoid a spurious failure in the
later aclocal invocation.
Luckily, this wart wasn't causing any spurious SKIP or FAIL,
but only the redundant addition to the `-Wno-syntax' option
to some aclocal invocations in the gettext tests.

ChangeLog
tests/gettext-macros.test

index b5c08ef..e2976ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2011-12-24  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
+       tests: one more fixlet for gettext macros requirement
+       * tests/gettext-macros.test (configure.in): Add calls to
+       AC_INIT and AC_PROG_CC, to avoid a spurious failure in the
+       later aclocal invocation.
+       Luckily, this wart wasn't causing any spurious SKIP or FAIL,
+       but only the redundant addition to the `-Wno-syntax' option
+       to some aclocal invocations in the gettext tests.
+
+2011-12-24  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
        tests: fix handling of gettext macros requirement
 
        The code introduced in the earlier change `v1.11-581-gb7d67d5'
index 4ab2b5e..77a2f30 100755 (executable)
@@ -54,6 +54,8 @@ autopoint_version=`extract_program_version $am_gettextize_command` \
   || autopoint_version=0.10.35
 
 cat > configure.in <<END
+AC_INIT([foo], [1.0])
+AC_PROG_CC
 # Both required by autopoint.
 AM_GNU_GETTEXT
 AM_GNU_GETTEXT_VERSION([$autopoint_version])