summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2023-12-26 15:23:15 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2023-12-26 15:23:15 +0100
commit62bfed65ca91c34ea24b81b191c23d4542a7075b (patch)
treec0a04f8f99bf2acc08fa501d4d6827f3c9bd5ac2
parent9754fe74f7b5c0600cc41eef8c6f5c8305a74a18 (diff)
sfeed_update: mktemp: improve compatibility with older systems
Tested on NetBSD 5.1: - mktemp -p doesn't exist there yet. - mktemp without any arguments/template doesnt work - mktemp -d without any arguments/template doesnt work
-rwxr-xr-xsfeed_update2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_update b/sfeed_update
index 79f23ee..0628e2e 100755
--- a/sfeed_update
+++ b/sfeed_update
@@ -212,7 +212,7 @@ main() {
# load config file.
loadconfig "$1"
# fetch feeds and store in temporary directory.
- sfeedtmpdir="$(mktemp -p "${TMPDIR:-/tmp}" -d 'sfeed_XXXXXX')" || die
+ sfeedtmpdir="$(mktemp -d "${TMPDIR:-/tmp}/sfeed_XXXXXX")" || die
mkdir -p "${sfeedtmpdir}/feeds"
touch "${sfeedtmpdir}/ok" || die
# make sure path exists.