[commit: ghc] master: Fix validation error in Linker arising from package rep changes (9d6fbcc)

git at git.haskell.org git at git.haskell.org
Fri Aug 29 14:04:16 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/9d6fbcc73309fea32cdf3ee751f21dca904bcf72/ghc

>---------------------------------------------------------------

commit 9d6fbcc73309fea32cdf3ee751f21dca904bcf72
Author: Duncan Coutts <duncan at well-typed.com>
Date:   Wed Aug 27 13:26:24 2014 +0100

    Fix validation error in Linker arising from package rep changes


>---------------------------------------------------------------

9d6fbcc73309fea32cdf3ee751f21dca904bcf72
 compiler/ghci/Linker.lhs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler/ghci/Linker.lhs b/compiler/ghci/Linker.lhs
index d4de513..3169858 100644
--- a/compiler/ghci/Linker.lhs
+++ b/compiler/ghci/Linker.lhs
@@ -1023,7 +1023,7 @@ data LibrarySpec
 partOfGHCi :: [PackageName]
 partOfGHCi
  | isWindowsHost || isDarwinHost = []
- | otherwise = map PackageName
+ | otherwise = map (PackageName . mkFastString)
                    ["base", "template-haskell", "editline"]
 
 showLS :: LibrarySpec -> String



More information about the ghc-commits mailing list