+2007-07-22 Noah Misch <noah@cs.caltech.edu>
+
+ * tests/subst.test: Move the AC_SUBST into a macro definition.
+ Avoids an error from CVS Autoconf.
+ * THANKS: Update.
+ Report by Benoit Sigoure.
+
2007-07-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Alexandre Duret-Lutz <adl@gnu.org>
Axel Belinfante Axel.Belinfante@cs.utwente.nl
Bas Wijnen shevek@fmf.nl
Ben Pfaff blp@cs.standford.edu
+Benoit Sigoure tsuna@lrde.epita.fr
Bernard Giroud bernard.giroud@creditlyonnais.ch
Bernard Urban Bernard.Urban@meteo.fr
Bernd Jendrissek berndfoobar@users.sourceforge.net
#! /bin/sh
-# Copyright (C) 1996, 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 1996, 2001, 2002, 2007 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
. ./defs || exit 1
cat >> configure.in << 'END'
-AC_SUBST($1)
-AC_SUBST([$]$1) dnl this is the actual invocation that was used
+dnl This test used to have the following lines, which cannot have
+dnl worked sensibly with Autoconf for years, however:
+dnl AC_SUBST($1)
+dnl AC_SUBST([$]$1) dnl this is the actual invocation that was used
+dnl
+AC_DEFUN([FOO],
+[AC_SUBST([$1])])
+FOO([BAR])
END
: > Makefile.am