2007-12-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+ * tests/torture.at (srcdir): Fix quoting.
+
Do not pass top_srcdir to configure scripts in testsuite.
* tests/autotest.at (srcdir propagation): Copy install-sh to
source tree.
AC_CONFIG_FILES([foo at-dir/bar])
+# Use quotes in the INIT-COMMANDS to accommodate a value of $srcdir
+# containing e.g., spaces or shell meta-characters.
+# Use *single* quotes because the context is an unquoted here-doc.
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