From: Ralf Wildenhues Date: Sat, 31 Oct 2009 16:04:38 +0000 (+0100) Subject: Fix testsuite failure on IRIX and AIX. X-Git-Tag: v2.65~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c78135a4dee915c0ef8f34df9b179c9b88742a7a;p=thirdparty%2Fautoconf.git Fix testsuite failure on IRIX and AIX. * tests/torture.at (Substitute and define special characters): Double the backslash before the double-quote in AC_DEFINE_UNQUOTED, as documented for here-documents. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 31b805ad..f4a58500 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-10-31 Ralf Wildenhues + + Fix testsuite failure on IRIX and AIX. + * tests/torture.at (Substitute and define special characters): + Double the backslash before the double-quote in + AC_DEFINE_UNQUOTED, as documented for here-documents. + 2009-10-31 Eric Blake Fix cross-manual link to gcc. diff --git a/tests/torture.at b/tests/torture.at index b2fc7c3d..8f220131 100644 --- a/tests/torture.at +++ b/tests/torture.at @@ -858,7 +858,7 @@ AC_DEFINE_UNQUOTED([unq3], ["$baz"], [unquoted, test 3]) AC_DEFINE_UNQUOTED([unq4], [${baz+set}], [unquoted, test 4]) AC_DEFINE_UNQUOTED([unq5], ["${baz+`echo "a b"`}"], [unquoted, test 5]) AC_DEFINE_UNQUOTED([unq6], [`echo hi`], [unquoted, test 6]) -AC_DEFINE_UNQUOTED([unq7], ['\"'], [unquoted, test 7]) +AC_DEFINE_UNQUOTED([unq7], ['\\"'], [unquoted, test 7]) AC_PROG_AWK AC_CONFIG_FILES([Foo Zardoz])]])