---
This test actually calls configure with an absolute path,
so in a tree with whitespace we need to quote (just like
most of the code under autoconf/lib does, too).
Cheers,
Ralf
tests/torture.at | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/torture.at b/tests/torture.at
index 11c619d..0f6d0ef 100644
--- a/tests/torture.at
+++ b/tests/torture.at
@@ -973,9 +973,9 @@ AT_DATA([configure.ac],
AC_CONFIG_FILES([foo at-dir/bar])
AC_CONFIG_COMMANDS([report],
-[test -f $srcdir/configure.ac ||
+[test -f "$srcdir/configure.ac" ||
AC_MSG_ERROR([cannot find $srcdir/configure.ac])],
- [srcdir=$srcdir])
+ [srcdir='$srcdir'])
AC_OUTPUT
rm -f -r foo at-dir/bar
--
1.5.3.6.950.g92b7b