diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-04-20 18:51:18 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-04-20 18:51:18 +0100 |
commit | d65a61dfa99e613a3f16b85e592b1e35270d4098 (patch) | |
tree | a574cdab25ea213a13f078edfa05eae3350f1efb /driver | |
parent | c91c23300d58e4bd06c0f154e9ade0e1e3c2c21e (diff) | |
download | haskell-d65a61dfa99e613a3f16b85e592b1e35270d4098.tar.gz |
Use different exeext variables for each stage; fixes #7709
Currently they are all set to the same value, but when cross-compiling
they could be set to different values.
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 736b7a927d..bd4bf36117 100644 --- a/driver/ghci/ghc.mk +++ b/driver/ghci/ghc.mk @@ -38,7 +38,7 @@ driver/ghci_dist_OTHER_OBJS = driver/ghci/ghci.res $(eval $(call build-prog,driver/ghci,dist,1)) -driver/ghci_dist_PROG_VER = ghci-$(ProjectVersion)$(exeext) +driver/ghci_dist_PROG_VER = ghci-$(ProjectVersion)$(exeext1) INSTALL_BINS += driver/ghci/dist/build/tmp/$(driver/ghci_dist_PROG_VER) |