diff options
author | Gabor Greif <ggreif@gmail.com> | 2013-09-03 04:14:48 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2013-09-03 04:15:10 +0200 |
commit | e52554768ad28bd0c191826100786b1aee3295dc (patch) | |
tree | 44dc930d8df22e9ed1d52bc30be6ffc61a41ecc5 /mk/install.mk.in | |
parent | a137827a3269db40572cea49d3e1a104b5ef9c71 (diff) | |
download | haskell-e52554768ad28bd0c191826100786b1aee3295dc.tar.gz |
Patch by lukexi.
Fixing #8217 for the unix(-like) case.
Diffstat (limited to 'mk/install.mk.in')
-rw-r--r-- | mk/install.mk.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/install.mk.in b/mk/install.mk.in index 2808c1f784..d6f68abd19 100644 --- a/mk/install.mk.in +++ b/mk/install.mk.in @@ -105,7 +105,7 @@ else # to be in the same place (and things like ghc-pkg need to agree on # where package.conf is, so we just set it globally). # -ghclibdir = $(libdir)/ghc-$(ProjectVersion) +ghclibdir = $(libdir)/$(CrossCompilePrefix)ghc-$(ProjectVersion) ghcdocdir = $(datarootdir)/doc/ghc endif |