configure: fix mktemp test and fallback function

This commit is contained in:
Mans Rullgard 2010-10-07 00:44:52 +01:00
parent 44caaa560b
commit 09a5c2452c
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -1792,11 +1792,11 @@ HOSTEXESUF=$(exesuf $host_os)
: ${TMPDIR:=$TMP}
: ${TMPDIR:=/tmp}
if ! check_cmd type mktemp; then
if ! check_cmd mktemp -u; then
# simple replacement for missing mktemp
# NOT SAFE FOR GENERAL USE
mktemp(){
echo "${2%XXX*}.${HOSTNAME}.${UID}.$$"
echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
}
fi