[commit: ghc] wip/remove-cabal-dep: Fix validation error in Linker arising from package rep changes (ecdf536)
git at git.haskell.org
git at git.haskell.org
Wed Aug 27 13:01:02 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/remove-cabal-dep
Link : http://ghc.haskell.org/trac/ghc/changeset/ecdf5363d7e83ebed531b8a8fc814315e17c6f48/ghc
>---------------------------------------------------------------
commit ecdf5363d7e83ebed531b8a8fc814315e17c6f48
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
>---------------------------------------------------------------
ecdf5363d7e83ebed531b8a8fc814315e17c6f48
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