summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2019-09-03 21:10:59 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-09-05 18:50:56 -0400
commitb55ee979d32df938eee9c4c02c189f8be267e8a1 (patch)
treec1d1006c0ddd76f85c05a9258d687a32d2f6ce96 /mk
parentf96d57b800f10ab194897133f3c0d11e4fbc71b4 (diff)
downloadhaskell-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 'mk')
-rw-r--r--mk/config.mk.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in
index ca17e8689b..0f4208efc0 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -489,11 +489,10 @@ ArArgs = @ArArgs@
HaskellTargetOs = @HaskellTargetOs@
HaskellTargetArch = @HaskellTargetArch@
TargetWordSize = @TargetWordSize@
-HaskellHaveGnuNonexecStack = @HaskellHaveGnuNonexecStack@
-HaskellHaveIdentDirective = @HaskellHaveIdentDirective@
-HaskellHaveSubsectionsViaSymbols = @HaskellHaveSubsectionsViaSymbols@
-HaskellHaveRTSLinker = @HaskellHaveRTSLinker@
-Unregisterised = @Unregisterised@
+TargetHasGnuNonexecStack = @TargetHasGnuNonexecStack@
+TargetHasIdentDirective = @TargetHasIdentDirective@
+TargetHasSubsectionsViaSymbols = @TargetHasSubsectionsViaSymbols@
+TargetHasRTSLinker = @TargetHasRTSLinker@
TablesNextToCode = @TablesNextToCode@
SettingsCCompilerCommand = @SettingsCCompilerCommand@