* tests/init.sh (mktempd_): Run mktemp in a subcommand.
+2011-12-04 Bruno Haible <bruno@clisp.org>
+ Jim Meyering <meyering@redhat.com>
+
+ tests: Avoid spurious error message on platforms without mktemp program.
+ * tests/init.sh (mktempd_): Run mktemp in a subcommand.
+
2011-12-04 Bruno Haible <bruno@clisp.org>
sethostname: Fix documentation.
esac
# First, try to use mktemp.
- d=`unset TMPDIR; mktemp -d -t -p "$destdir_" "$template_" 2>/dev/null` \
+ d=`unset TMPDIR; { mktemp -d -t -p "$destdir_" "$template_"; } 2>/dev/null` \
|| fail=1
# The resulting name must be in the specified directory.