diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-10-17 18:38:00 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-29 20:31:36 -0400 |
commit | 3c0372d6bce9c1d580efdfff148e922a6519db08 (patch) | |
tree | dc63365c38bf036c1380f7e05b1cbfcb6e0c34bb /mk | |
parent | 72f7ac9ad66b886f4ea9569446e20aa4f97890e4 (diff) | |
download | haskell-3c0372d6bce9c1d580efdfff148e922a6519db08.tar.gz |
distrib: Fix binary distribution installation
This had silently regressed due to 81860281 and the variable renaming performed
in b55ee979, as noted in #17374.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 98155f823e..50b8aef610 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -440,7 +440,8 @@ EXECUTABLE_FILE = chmod +x # $(GHC) points to installed version of the compiler. # -# NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead +# NOTE: Don't override $(GHC) in build.mk, use +# `./configure GHC=...` instead # (because the version numbers have to be calculated). GHC := @WithGhc@ |