summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2006-06-22 18:52:57 +0000
committerErwin Lansing <erwin@FreeBSD.org>2006-06-22 18:52:57 +0000
commit7fbbcb4402a1489161b67921dd9082f76ea2ba07 (patch)
tree84321513dd8a423520b9a15bf404aacc735c481c /Tools
parent- Fix OSVERSION detection in RELENG_6 and RELENG_6_1 (diff)
MFP4:
Actually use ${SCP_DEST_TMP} to fix the case where SCP_DEST_TMP != /tmp/
Notes
Notes: svn path=/head/; revision=166044
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/tindex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/tindex b/Tools/scripts/tindex
index 6be0147be43a..dcf9a5222773 100755
--- a/Tools/scripts/tindex
+++ b/Tools/scripts/tindex
@@ -112,7 +112,7 @@ checkfixed() {
}
createtmpdir() {
- TMPDIR=`ssh ${SCP_DEST_HOST} "mktemp -qd /tmp/tindex.XXXXXX"`
+ TMPDIR=`ssh ${SCP_DEST_HOST} "mktemp -qd ${SCP_DEST_TMP}/tindex.XXXXXX"`
if [ $? -ne 0 ]; then
echo "$0: Can't create temp file, exiting..."
exit 1