diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2016-09-01 12:13:18 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-09-01 14:12:22 -0400 |
commit | 1e39c29ab55b9df83df142ad50e7a79e22f47f9e (patch) | |
tree | 99f4e3c5e556de48cbc596aabc7f10275567266f /mk | |
parent | a48de37dcca98e7d477040b0ed298bcd1b3ab303 (diff) | |
download | haskell-1e39c29ab55b9df83df142ad50e7a79e22f47f9e.tar.gz |
Kill vestiages of DEFAULT_TMPDIR
It was removed long ago in cf403b50900648063d99afa160d2091a7d6f58c1.
Thanks for @rwbarton for catching this.
Updates nofib submodule.
Test Plan: Validate
Reviewers: austin, rwbarton
Subscribers: thomie, rwbarton
Differential Revision: https://phabricator.haskell.org/D2493
GHC Trac Issues: #12443
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 56a63fd4d5..2163643c58 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -396,21 +396,6 @@ GhcRtsWithLibdw=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64),@UseLibdw@, # ################################################################################ -# Directory used by GHC (and possibly other tools) for storing -# temporary files. If your TMPDIR isn't big enough, either override -# this in build.mk or set your environment variable "TMPDIR" to point -# to somewhere with more space. (TMPDIR=. is a good choice). - -# DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to -# override an environment variable with the value of the make variable -# of the same name (if it exists) when executing sub-processes, so -# setting the TMPDIR env var would have no effect in the build tree. - -DEFAULT_TMPDIR = /tmp -ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" -DEFAULT_TMPDIR = /C/TEMP -endif - BIN_DIST_NAME = ghc-$(ProjectVersion) BIN_DIST_PREP_DIR = bindistprep/$(BIN_DIST_NAME) BIN_DIST_PREP_TAR = bindistprep/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar |