Drop -t option from mktemp

This commit is contained in:
mpm@selenic.com 2005-07-28 07:46:08 -08:00
parent 04d7166797
commit 0411b81b0a

View File

@ -47,7 +47,7 @@ function run_one
{
rm -f $1.err
export TZ=GMT
D=`mktemp -d -t tmp.XXXXXX`
D=`mktemp -d ${TMP-/tmp}/tmp.XXXXXX`
if [ "$D" = "" ] ; then
echo mktemp failed!
fi