From 22db60ed0dfd606ab8f8d49141446442a4a72a48 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Fri, 11 Jan 2013 15:58:50 -0500
Subject: [PATCH] MAINT-1481: use 'mktemp -d' to generate tempdir. Responding
 to Lex's code-review comments.

---
 indra/viewer_components/updater/scripts/linux/update_install | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/viewer_components/updater/scripts/linux/update_install b/indra/viewer_components/updater/scripts/linux/update_install
index 0f624c4deee..a9df9042fda 100644
--- a/indra/viewer_components/updater/scripts/linux/update_install
+++ b/indra/viewer_components/updater/scripts/linux/update_install
@@ -171,7 +171,7 @@ status 'Installing Second Life...'
 # different filesystem than INSTALL_DIR. One is tempted to create tempdir on a
 # path derived from `dirname INSTALL_DIR` -- but it seems modern 'mv' can
 # handle moving across filesystems??
-tempdir="/tmp/$(basename "$0").$$"
+tempdir="$(mktemp -d)"
 tempinstall="$tempdir/install"
 # capture the actual error message, if any
 err="$(mkdir -p "$tempinstall" 2>&1)" || fail "$err"
-- 
GitLab