+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-08 Collin Funk <collin.funk1@gmail.com>
test-framework-sh: Don't leave temporary directories on NetBSD.
#!/bin/sh
# Create a temporary directory, much like mktemp -d does.
-# Copyright (C) 2007-2023 Free Software Foundation, Inc.
+# Copyright (C) 2007-2024 Free Software Foundation, Inc.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
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.