summaryrefslogtreecommitdiff
path: root/Master/bin/amd64-netbsd/dvihp
diff options
context:
space:
mode:
Diffstat (limited to 'Master/bin/amd64-netbsd/dvihp')
-rwxr-xr-xMaster/bin/amd64-netbsd/dvihp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Master/bin/amd64-netbsd/dvihp b/Master/bin/amd64-netbsd/dvihp
index fdaf3fb87bf..03a2dbe9605 100755
--- a/Master/bin/amd64-netbsd/dvihp
+++ b/Master/bin/amd64-netbsd/dvihp
@@ -6,14 +6,11 @@
: ${DVILJ=dvilj4} # the dvilj variant to run
: ${SPOOL=lpr} # used to print an LJ file
-: ${TMPDIR=${TEMP-${TMP-/tmp}}} # for the dvicopy output
-tmpdir="${TMPDIR}"/dvihp$$
-(umask 077; mkdir "$tmpdir") \
+tmpdir=`mktemp -d` \
|| { echo "cannot create directory \`$tmpdir'."; exit 1; }
trap '
- cd "${TMPDIR}"
test -d "$tmpdir" && { rm -f "$tmpdir"/*; rmdir "$tmpdir"; }
exit 0
' 0 1 2 3 6 7 13 15