summaryrefslogtreecommitdiff
path: root/compiler/ghci
diff options
context:
space:
mode:
authorDuncan Coutts <duncan@well-typed.com>2014-08-27 13:26:24 +0100
committerEdward Z. Yang <ezyang@cs.stanford.edu>2014-08-29 12:39:05 +0100
commit9d6fbcc73309fea32cdf3ee751f21dca904bcf72 (patch)
treeae280cd2213c3210a86196f6a096630779bece3e /compiler/ghci
parent42f99e99ab38314b15d5ad4bb360ed04579bdc2d (diff)
downloadhaskell-9d6fbcc73309fea32cdf3ee751f21dca904bcf72.tar.gz
Fix validation error in Linker arising from package rep changes
Diffstat (limited to 'compiler/ghci')
-rw-r--r--compiler/ghci/Linker.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/Linker.lhs b/compiler/ghci/Linker.lhs
index d4de513ba8..31698580a5 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