Fix building without GHCi
authorIan Lynagh <igloo@earth.li>
Sun, 3 May 2009 00:44:37 +0000 (00:44 +0000)
committerIan Lynagh <igloo@earth.li>
Sun, 3 May 2009 00:44:37 +0000 (00:44 +0000)
ghc/ghc.mk

index d72305c..c931394 100644 (file)
@@ -38,7 +38,10 @@ endif
 
 ghc_stage1_MODULES = Main
 
-ghc_stage2_MODULES = $(ghc_stage1_MODULES) GhciMonad GhciTags InteractiveUI
+ghc_stage2_MODULES = $(ghc_stage1_MODULES)
+ifeq "$(GhcWithInterpreter)" "YES"
+ghc_stage2_MODULES += GhciMonad GhciTags InteractiveUI
+endif
 ghc_stage3_MODULES = $(ghc_stage2_MODULES)
 
 ghc_stage1_PROG = ghc-stage1$(exeext)