diff options
author | John Ericson <git@JohnEricson.me> | 2019-09-03 21:10:59 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-05 18:50:56 -0400 |
commit | b55ee979d32df938eee9c4c02c189f8be267e8a1 (patch) | |
tree | c1d1006c0ddd76f85c05a9258d687a32d2f6ce96 /distrib | |
parent | f96d57b800f10ab194897133f3c0d11e4fbc71b4 (diff) | |
download | haskell-b55ee979d32df938eee9c4c02c189f8be267e8a1.tar.gz |
Make sure all boolean settings entries use `YES` / `NO`
Some where using `True` / `False`, a legacy of when they were in
`Config.hs`. See #16914 / d238d3062a9858 for a similar problem.
Also clean up the configure variables names for consistency and clarity
while we're at it. "Target" makes clear we are talking about outputted
code, not where GHC itself runs.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/configure.ac.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/configure.ac.in b/distrib/configure.ac.in index f8fa83ef44..b5f4412276 100644 --- a/distrib/configure.ac.in +++ b/distrib/configure.ac.in @@ -18,8 +18,8 @@ FP_GMP dnl Various things from the source distribution configure bootstrap_target=@TargetPlatform@ -HaskellHaveRTSLinker=@HaskellHaveRTSLinker@ -AC_SUBST(HaskellHaveRTSLinker) +HaveRTSLinker=@HaveRTSLinker@ +AC_SUBST(HaveRTSLinker) FFIIncludeDir=@FFIIncludeDir@ FFILibDir=@FFILibDir@ |