On Wed, 8 Aug 2007, Andreas Schwab wrote:
if test "x${use_]DOWN[_driver}" = "xyes"; thenThe outer pairs of quotes are removed before the AC_DEFUN macro is called, thus the argument does not contain the word DOWN any more, but rather use_DOWN_driver. You need to fix the quoting that they survive the first pass of parsing: if test "x${use_[]DOWN[]_driver}" = "xyes"; then
thank you, it works. I also have to add those quotes to all the other places so that it works correctly
Vincent Torri _______________________________________________ Autoconf mailing list [email protected] http://lists.gnu.org/mailman/listinfo/autoconf
