test_subman.sh: Don't use --tmpdir

test_subman.sh: Don't use --tmpdir since on most Linux-is it is consideren default
when creating a directory:
`If TEMPLATE is not specified, use tmp.XXXXXXXXXX, and --tmpdir is implied.`

And on FreeBSD --tmpdir is not available anyways.

Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
This commit is contained in:
Willem Jan Withagen 2016-10-10 01:04:34 +02:00
parent cece97d993
commit 0894865ed8

View File

@ -2,7 +2,7 @@
source $(dirname $0)/detect-build-env-vars.sh
TMP=$(mktemp --tmpdir -d)
TMP=$(mktemp -d)
trap "rm -fr $TMP" EXIT
export PATH=$TMP:$PATH