Use 6 X with mktemp to make it work on some platforms and update all tools.

This commit is contained in:
Daniel Nichter
2012-05-16 11:38:48 -06:00
parent 598726c2b2
commit d46285342a
8 changed files with 16 additions and 19 deletions

View File

@@ -425,7 +425,7 @@ mk_tmpdir() {
else
local tool="${0##*/}"
local pid="$$"
TMPDIR=`mktemp -d /tmp/${tool}.${pid}.XXXXX` \
TMPDIR=`mktemp -d /tmp/${tool}.${pid}.XXXXXX` \
|| die "Cannot make secure tmpdir"
fi
}