aboutsummaryrefslogtreecommitdiffstats
path: root/rules.mk
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2017-12-12 16:28:04 +0100
committerJo-Philipp Wich <jo@mein.io>2017-12-12 17:44:01 +0100
commit72051f70368b53afa3305e1485c62b7e47fc1210 (patch)
tree510e6399bf65ce4b6552b646666277fabc791957 /rules.mk
parent902961c148b1f6d06a6159090366250281d801d7 (diff)
downloadupstream-72051f70368b53afa3305e1485c62b7e47fc1210.tar.gz
upstream-72051f70368b53afa3305e1485c62b7e47fc1210.tar.bz2
upstream-72051f70368b53afa3305e1485c62b7e47fc1210.zip
rules.mk: export TMPDIR
Set TMPDIR to the same value as the existing TMP_DIR variable in order to let gcc and various other utilities use the local temporary directory instead of the system-wide one. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/rules.mk b/rules.mk
index ed796a5402..3558f2f028 100644
--- a/rules.mk
+++ b/rules.mk
@@ -21,6 +21,7 @@ DUMP:=1
endif
export TMP_DIR:=$(TOPDIR)/tmp
+export TMPDIR:=$(TMP_DIR)
qstrip=$(strip $(subst ",,$(1)))
#"))