diff options
author | erwin <erwin@FreeBSD.org> | 2006-06-22 18:52:57 +0000 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2006-06-22 18:52:57 +0000 |
commit | ea024c0a8f0dac2e653e046ca1dbdb2a09d092d0 (patch) | |
tree | 597754cd688fa05ca0460e017aabcc763568be3f /Tools | |
parent | c530235c59234361401ff36cb7273540e6302916 (diff) | |
download | FreeBSD-ports-ea024c0a8f0dac2e653e046ca1dbdb2a09d092d0.zip FreeBSD-ports-ea024c0a8f0dac2e653e046ca1dbdb2a09d092d0.tar.gz |
MFP4:
Actually use ${SCP_DEST_TMP} to fix the case where
SCP_DEST_TMP != /tmp/
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/tindex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/tindex b/Tools/scripts/tindex index 6be0147..dcf9a52 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 |