Revert "Use mktemp to generate temp files."

Doesn't seem to work on windows
This reverts commit 27988c5e66.
This commit is contained in:
Thomas Preud'homme 2010-06-23 14:10:22 +02:00
parent 27988c5e66
commit 5e6fabefd7
1 changed files with 2 additions and 1 deletions

3
configure vendored
View File

@ -11,7 +11,8 @@ else
TMPDIR1="/tmp"
fi
TMPN="$(mktemp --tmpdir=${TMPDIR1} tcc-conf-XXXXXXXXXX-$$-XXXXXXXXXX)"
# bashism: TMPN="${TMPDIR1}/tcc-conf-${RANDOM}-$$-${RANDOM}.c"
TMPN="./conftest-$$"
TMPC=$TMPN.c
TMPH=$TMPN.h