diff options
author | Ian Lynagh <igloo@earth.li> | 2010-10-06 13:02:35 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-10-06 13:02:35 +0000 |
commit | 5e54b553bbb112167412ee9164135d56b06f5721 (patch) | |
tree | 3602d87bedfae8722665e0ab8047d8445499ce91 /compiler/ghci | |
parent | 781fd68db0abe2ebca2481a149442ee3ff8d99b7 (diff) | |
download | haskell-5e54b553bbb112167412ee9164135d56b06f5721.tar.gz |
Don't automatically link the haskell98 package
The default language is now Haskell2010, so this was a little odd.
Also, --make is now on by default, so this was largely irrelevant.
Diffstat (limited to 'compiler/ghci')
-rw-r--r-- | compiler/ghci/Linker.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/Linker.lhs b/compiler/ghci/Linker.lhs index f7d925e8df..cc90cb5702 100644 --- a/compiler/ghci/Linker.lhs +++ b/compiler/ghci/Linker.lhs @@ -964,7 +964,7 @@ partOfGHCi :: [PackageName] partOfGHCi | isWindowsTarget || isDarwinTarget = [] | otherwise = map PackageName - ["base", "haskell98", "template-haskell", "editline"] + ["base", "template-haskell", "editline"] showLS :: LibrarySpec -> String showLS (Object nm) = "(static) " ++ nm |