* build-aux/mktempd (mktempd): Don't use -t when invoking mktemp since
some implementations expect an argument while others do not.
+2024-06-11 Collin Funk <collin.funk1@gmail.com>
+
+ mktempd: Invoke mktemp portably.
+ * build-aux/mktempd (mktempd): Don't use -t when invoking mktemp since
+ some implementations expect an argument while others do not.
+
2024-06-11 Bruno Haible <bruno@clisp.org>
test-framework-sh: Fix 'returns_' to not turn off tracing permanently.
fail=0
# First, try to use mktemp.
- d=`env -u TMPDIR mktemp -d -t -p "$destdir" "$template" 2>/dev/null` \
+ d=`env -u TMPDIR mktemp -d -p "$destdir" "$template" 2>/dev/null` \
|| fail=1
# The resulting name must be in the specified directory.