summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-03-04 17:49:18 +0000
committerIan Lynagh <ian@well-typed.com>2013-03-04 17:49:18 +0000
commit045e774f13355f503677661726d9749aac203b3e (patch)
treecc62c9d967a6c8d20a76ea948d22b94f452bca4d /mk
parente628dd181d01dc2ecdede2821a44a374e4fb8340 (diff)
downloadhaskell-045e774f13355f503677661726d9749aac203b3e.tar.gz
Remove a couple of lingering references to the dead BootingFromHc variable
Diffstat (limited to 'mk')
-rw-r--r--mk/config.mk.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in
index 836e8ffa81..75648341ef 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -226,10 +226,8 @@ INTEGER_LIBRARY=integer-gmp
GhcLibWays = v
# In addition to the normal sequential way, the default is to also build
-# profiled prelude libraries unless we are booting from .hc files
-ifneq "$(BootingFromHc)" "YES"
+# profiled prelude libraries
GhcLibWays += p
-endif
ifeq "$(PlatformSupportsSharedLibs)" "YES"
GhcLibWays += dyn
@@ -253,9 +251,7 @@ BuildSharedLibs=$(strip $(if $(findstring dyn,$(GhcLibWays)),YES,NO))
GhcRTSWays=l
# Usually want the debug version
-ifeq "$(BootingFromHc)" "NO"
GhcRTSWays += debug
-endif
# We always have the threaded versions, but note that SMP support may be disabled
# (see GhcWithSMP).