diff options
author | Ian Lynagh <igloo@earth.li> | 2009-10-13 11:09:38 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-10-13 11:09:38 +0000 |
commit | 7b96dcf246d77e91c939e0cb7e9c18f242d3bfb7 (patch) | |
tree | beb00a1b6968eb22a4e4f799b8ede1588ea933db /testsuite/mk | |
parent | 94b2161261c5ef4d31b422e60fb072040aa5bfb5 (diff) | |
download | haskell-7b96dcf246d77e91c939e0cb7e9c18f242d3bfb7.tar.gz |
ghc is "ghc.exe", not "ghc", on Windows
Diffstat (limited to 'testsuite/mk')
-rw-r--r-- | testsuite/mk/boilerplate.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/mk/boilerplate.mk b/testsuite/mk/boilerplate.mk index 802d5e663e..858f40b8ac 100644 --- a/testsuite/mk/boilerplate.mk +++ b/testsuite/mk/boilerplate.mk @@ -63,7 +63,7 @@ ifeq "$(BINDIST)" "YES" ifeq '$(shell $(STAGE1_GHC) +RTS --info | grep "^ ..\"Host OS\". \"mingw32\".$$")' '' TEST_HC := $(abspath $(TOP)/../)/bindisttest/installed/bin/ghc else -TEST_HC := "$(abspath $(TOP)/../)/bindisttest/install dir/bin/ghc" +TEST_HC := "$(abspath $(TOP)/../)/bindisttest/install dir/bin/ghc.exe" endif else ifeq "$(stage)" "1" TEST_HC := $(STAGE1_GHC) |