summaryrefslogtreecommitdiff
path: root/ghc/compiler/ghci/Linker.lhs
diff options
context:
space:
mode:
authordesrt <unknown>2005-02-19 19:45:50 +0000
committerdesrt <unknown>2005-02-19 19:45:50 +0000
commitb374a3eea08e9dcb5d937232ce06bcf1eb3a73df (patch)
treef6dbcbe4253dc99d82d4e1100ef87da0b5d4d7d1 /ghc/compiler/ghci/Linker.lhs
parent2384531dd48d546a55399c291aacbcfb8128706c (diff)
downloadhaskell-b374a3eea08e9dcb5d937232ce06bcf1eb3a73df.tar.gz
[project @ 2005-02-19 19:45:50 by desrt]
Linker.lhs: s/extraLdOpts/ldOptions/ to fix a build breakage caused by recent updates to main/ParsePkgConf.y (version 1.20)
Diffstat (limited to 'ghc/compiler/ghci/Linker.lhs')
-rw-r--r--ghc/compiler/ghci/Linker.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/ghci/Linker.lhs b/ghc/compiler/ghci/Linker.lhs
index ab4cafe246..bb968ffa34 100644
--- a/ghc/compiler/ghci/Linker.lhs
+++ b/ghc/compiler/ghci/Linker.lhs
@@ -760,7 +760,7 @@ linkPackage dflags pkg
= do
let dirs = Packages.libraryDirs pkg
let libs = Packages.hsLibraries pkg ++ Packages.extraLibraries pkg
- ++ [ lib | '-':'l':lib <- Packages.extraLdOpts pkg ]
+ ++ [ lib | '-':'l':lib <- Packages.ldOptions pkg ]
classifieds <- mapM (locateOneObj dirs) libs
-- Complication: all the .so's must be loaded before any of the .o's.