]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#9062 -- Honor TMPDIR in mkdep
authorQuanah Gibson-Mount <quanah@openldap.org>
Tue, 13 Aug 2019 15:03:45 +0000 (15:03 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Tue, 15 Oct 2019 00:12:55 +0000 (00:12 +0000)
build/mkdep

index 52fe03c16f88ed28fdf6b932c0cb5213db95777c..ff1c8236864f312de13e537a8b40bd3c58218a3c 100755 (executable)
@@ -103,7 +103,7 @@ if test ! -w $MAKE ; then
        exit 1
 fi
 
-TMP=/tmp/mkdep$$
+TMP=${TMPDIR-/tmp}/mkdep$$
 
 trap 'rm -f $TMP.sed $TMP ; exit 1' 1 2 3 13 15