diff options
author | Edward Z. Yang <ezyang@cs.stanford.edu> | 2017-03-10 14:33:39 -0800 |
---|---|---|
committer | Edward Z. Yang <ezyang@cs.stanford.edu> | 2017-03-17 01:48:13 -0700 |
commit | 138434fbef32ec86733747bdbc57f6da73cad500 (patch) | |
tree | f04b1cde74d75e83d8f70759baa62cb968d26bb6 /testsuite/timeout | |
parent | b301f78eee89726248cf2d142e005c6618dc839c (diff) | |
download | haskell-138434fbef32ec86733747bdbc57f6da73cad500.tar.gz |
GHC_STAGE1 isn't defined, use other form.
Summary:
I don't really know why this stopped working for me, but it
did on a recent clean. I don't know if this is right but
it solved the problem for me.
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
Test Plan: validate
Reviewers: bgamari, austin
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3318
Diffstat (limited to 'testsuite/timeout')
-rw-r--r-- | testsuite/timeout/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/timeout/Makefile b/testsuite/timeout/Makefile index b910a735f7..9626eaea19 100644 --- a/testsuite/timeout/Makefile +++ b/testsuite/timeout/Makefile @@ -51,7 +51,7 @@ boot all :: calibrate.out $(TIMEOUT_PROGRAM) calibrate.out: $(RM) -f TimeMe.o TimeMe.hi TimeMe TimeMe.exe - $(PYTHON) calibrate '$(GHC_STAGE1)' > $@ + $(PYTHON) calibrate '$(STAGE1_GHC)' > $@ # We use stage 1 to do the calibration, as stage 2 may not exist. # This isn't necessarily the compiler we'll be running the testsuite # with, but it's really the performance of the machine that we're |