Reported by Taylor R Campbell <riastradh@NetBSD.org> in
<https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=58319>
* tests/init.sh (mktempd_): Don't use mktemp with the -t option as it
leads to uncleaned temporary directories on NetBSD.
+2024-06-08 Collin Funk <collin.funk1@gmail.com>
+
+ test-framework-sh: Don't leave temporary directories on NetBSD.
+ Reported by Taylor R Campbell <riastradh@NetBSD.org> in
+ <https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=58319>
+ * tests/init.sh (mktempd_): Don't use mktemp with the -t option as it
+ leads to uncleaned temporary directories on NetBSD.
+
2024-06-06 Bruno Haible <bruno@clisp.org>
nstrftime: Support time zone names on MSVC.
esac
# First, try to use mktemp.
- d=`unset TMPDIR; { mktemp -d -t -p "$destdir_" "$template_"; } 2>/dev/null` &&
+ d=`unset TMPDIR; { mktemp -d -p "$destdir_" "$template_"; } 2>/dev/null` &&
# The resulting name must be in the specified directory.
case $d in "$destdir_slash_"*) :;; *) false;; esac &&