summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/common-functions2
-rwxr-xr-xbin/db-update2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/common-functions b/bin/common-functions
index 9c148a5..3146572 100755
--- a/bin/common-functions
+++ b/bin/common-functions
@@ -364,7 +364,7 @@ make_source_info() {
exit ${err}
}
- overlays_dir="$(mktemp -d)"
+ overlays_dir="$(mktemp -d "${work_dir}/tmp.XXXXXX")"
sudo mount -t tmpfs none "${overlays_dir}" || \
bail_out
diff --git a/bin/db-update b/bin/db-update
index 07da1f9..e1e785a 100755
--- a/bin/db-update
+++ b/bin/db-update
@@ -396,7 +396,7 @@ if ! flock ${block_flag} 8; then
exit 1
fi
-tmp_dir="$(mktemp -d)"
+tmp_dir="$(mktemp -d "${work_dir}/tmp.XXXXXX")"
clean_up_lock_file() {
rm -f "${package_database_lock_file}" "${build_list_lock_file}"