Browse Source

configure: fix --tempprefix option

It was broken in 091c986055
tags/n3.4
James Almer 8 years ago
parent
commit
8794cfbbc5
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      configure

+ 3
- 1
configure View File

@@ -3765,7 +3765,9 @@ HOSTEXESUF=$(exesuf $host_os)

if [ -n "$tempprefix" ] ; then
mktemp(){
echo $tempprefix.${HOSTNAME}.${UID}
tmpname="$tempprefix.${HOSTNAME}.${UID}"
echo "$tmpname"
mkdir "$tmpname"
}
elif ! check_cmd mktemp -u XXXXXX; then
# simple replacement for missing mktemp


Loading…
Cancel
Save