From 6aee32102f667a18b050e934759585260cae9ae6 Mon Sep 17 00:00:00 2001 From: Alastair Hughes Date: Thu, 31 Dec 2015 13:10:21 +1300 Subject: Replace mktemp's --tmpdir option with shell code. bacman and updpkgsums used GNU mktemp's --tmpdir option, which is not supported by some other implementations (including busybox). Replace that with shell code. Signed-off-by: Alastair Hughes Signed-off-by: Allan McRae --- contrib/updpkgsums.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/updpkgsums.sh.in') diff --git a/contrib/updpkgsums.sh.in b/contrib/updpkgsums.sh.in index 7b92efe3..aaed700a 100644 --- a/contrib/updpkgsums.sh.in +++ b/contrib/updpkgsums.sh.in @@ -79,8 +79,8 @@ if [[ ! -w . ]]; then fi # Generate the new sums -export BUILDDIR=$(mktemp -d --tmpdir updpkgsums.XXXXXX) -newbuildfile=$(mktemp --tmpdir updpkgsums.XXXXXX) +export BUILDDIR=$(mktemp -d "${TMPDIR:-/tmp}/updpkgsums.XXXXXX") +newbuildfile=$(mktemp "${TMPDIR:-/tmp}/updpkgsums.XXXXXX") trap "rm -rf '$BUILDDIR' '$newbuildfile'" EXIT newsums=$(makepkg -g -p "$buildfile") || die 'Failed to generate new checksums' -- cgit v1.2.3-54-g00ecf