summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-11-24 14:00:52 +0000
committerIan Lynagh <igloo@earth.li>2010-11-24 14:00:52 +0000
commit0f9cb5077d477f9d04ad58066525d24da389320a (patch)
tree3412e0d3607e6e9d1c3a19c355d0a512343187b2 /mk
parent46809fa91667e952afe016e4cd704b21274241b4 (diff)
downloadhaskell-0f9cb5077d477f9d04ad58066525d24da389320a.tar.gz
Remove unused variables from the build system: HBC, NHC, MKDEPENDHS
Diffstat (limited to 'mk')
-rw-r--r--mk/config.mk.in10
1 files changed, 2 insertions, 8 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in
index cc4d767c8d..148817148b 100644
--- a/mk/config.mk.in
+++ b/mk/config.mk.in
@@ -457,12 +457,9 @@ GENERATED_FILE = chmod a-w
EXECUTABLE_FILE = chmod +x
#-----------------------------------------------------------------------------
-# Haskell compilers and mkdependHS
+# Installed GHC
-# $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
-# compilers, if available.
-#
-# $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
+# $(GHC) points to installed version of the compiler.
#
# NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
# (because the version numbers have to be calculated).
@@ -480,9 +477,6 @@ GhcDir = $(dir $(GHC))
# Set to YES if $(GHC) has the editline package installed
GhcHasEditline = @GhcHasEditline@
-HBC = @HBC@
-NHC = @NHC@
-
# Sometimes we want to invoke ghc from the build tree in different
# places (eg. it's handy to have a nofib & a ghc build in the same
# tree). We can refer to "this ghc" as $(GHC_INPLACE):