From: Ian Lynagh Date: Tue, 8 Jul 2008 22:40:05 +0000 (+0000) Subject: Fix build; Opt_LinkHaskell98 is now Opt_AutoLinkPackages X-Git-Tag: Before_cabalised-GHC~57 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=6837025d796bf1487be3d572937e18d0e2cf727b Fix build; Opt_LinkHaskell98 is now Opt_AutoLinkPackages --- diff --git a/compiler/main/DriverPipeline.hs b/compiler/main/DriverPipeline.hs index 8543707..0db12cd 100644 --- a/compiler/main/DriverPipeline.hs +++ b/compiler/main/DriverPipeline.hs @@ -390,8 +390,8 @@ doLink dflags stop_phase o_files -- Always link in the haskell98 package for static linking. Other -- packages have to be specified via the -package flag. link_pkgs - | dopt Opt_LinkHaskell98 dflags = [haskell98PackageId] - | otherwise = [] + | dopt Opt_AutoLinkPackages dflags = [haskell98PackageId] + | otherwise = [] -- ---------------------------------------------------------------------------