System.Console.Terminfo isn't available when bootstrapping.
authorMatthias Kilian <kili@outback.escape.de>
Wed, 30 Sep 2009 21:26:29 +0000 (21:26 +0000)
committerMatthias Kilian <kili@outback.escape.de>
Wed, 30 Sep 2009 21:26:29 +0000 (21:26 +0000)
utils/ghc-pkg/Main.hs
utils/ghc-pkg/ghc.mk

index 2ddf315..952fa06 100644 (file)
@@ -73,7 +73,7 @@ import System.Process(runInteractiveCommand)
 import qualified System.Info(os)
 #endif
 
-#if !defined(mingw32_HOST_OS) && __GLASGOW_HASKELL__ >= 611
+#if !defined(mingw32_HOST_OS) && __GLASGOW_HASKELL__ >= 611 && !defined(BOOTSTRAPPING)
 import System.Console.Terminfo as Terminfo
 #endif
 
@@ -845,7 +845,7 @@ listPackages verbosity my_flags mPackageName mModuleName = do
 
   if simple_output then show_simple stack else do
 
-#if defined(mingw32_HOST_OS) || __GLASGOW_HASKELL__ < 611
+#if defined(mingw32_HOST_OS) || __GLASGOW_HASKELL__ < 611 || defined(BOOTSTRAPPING)
   mapM_ show_normal stack
 #else
   let
index dccd057..6795703 100644 (file)
@@ -53,6 +53,7 @@ utils/ghc-pkg/dist/build/$(utils/ghc-pkg_dist_PROG)$(exeext): utils/ghc-pkg/Main
        "$(GHC)" $(SRC_HC_OPTS) --make utils/ghc-pkg/Main.hs -o $@ \
               -Wall -fno-warn-unused-imports \
               -DCABAL_VERSION=$(CABAL_VERSION) \
+              -DBOOTSTRAPPING \
               -odir  bootstrapping \
               -hidir bootstrapping \
                -iutils/ghc-pkg \