diff options
author | Ian Lynagh <igloo@earth.li> | 2012-03-15 14:58:38 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-03-15 15:57:12 +0000 |
commit | 97c24cddca60e80ec150483482c2a5dc1e506a76 (patch) | |
tree | 11368feadcfe8d358d279d64dcdb4e04ae7e4e9b /driver | |
parent | 634ffaff45896dad3cc08ac38611861fb46eb3d6 (diff) | |
download | haskell-97c24cddca60e80ec150483482c2a5dc1e506a76.tar.gz |
Build the Windows ghci wrapper with stage1, not stage0
We use the in-place windres, which isn't guaranteed to work with the
stage0 compiler.
Diffstat (limited to 'driver')
-rw-r--r-- | driver/ghci/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/ghci/ghc.mk b/driver/ghci/ghc.mk index 51203ab4d5..1d609c7949 100644 --- a/driver/ghci/ghc.mk +++ b/driver/ghci/ghc.mk @@ -34,7 +34,7 @@ driver/ghci_dist_PROG = ghci$(exeext) driver/ghci_dist_INSTALL = YES driver/ghci_dist_OTHER_OBJS = driver/ghci/ghci.res -$(eval $(call build-prog,driver/ghci,dist,0)) +$(eval $(call build-prog,driver/ghci,dist,1)) driver/ghci_dist_PROG_VER = ghci-$(ProjectVersion)$(exeext) |