From 14c70bdc7d19c9efca6e2dd21d483ff9c182fb6f Mon Sep 17 00:00:00 2001 From: commitmaniac <201806046+commitmaniac@users.noreply.github.com> Date: Mon, 23 Mar 2026 14:42:00 -0400 Subject: [PATCH] configure.in: Use portable invocation of mktemp --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e73c2dd..f1428e0 100755 --- a/configure +++ b/configure @@ -98,7 +98,7 @@ done # exit. This simplifies the script from needing to tidy up everything # directly. -TMPROOT=$(mktemp -d) || exit 1 +TMPROOT=$(mktemp -d -t tmproot.XXXXXX) || exit 1 # shellcheck disable=SC2064 trap "rm -rf \"$TMPROOT\"" EXIT diff --git a/configure.in b/configure.in index 5c60cd9..a64559f 100644 --- a/configure.in +++ b/configure.in @@ -98,7 +98,7 @@ done # exit. This simplifies the script from needing to tidy up everything # directly. -TMPROOT=$(mktemp -d) || exit 1 +TMPROOT=$(mktemp -d -t tmproot.XXXXXX) || exit 1 # shellcheck disable=SC2064 trap "rm -rf \"$TMPROOT\"" EXIT