From b374a3eea08e9dcb5d937232ce06bcf1eb3a73df Mon Sep 17 00:00:00 2001 From: desrt Date: Sat, 19 Feb 2005 19:45:50 +0000 Subject: [PATCH] [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) --- ghc/compiler/ghci/Linker.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/ghci/Linker.lhs b/ghc/compiler/ghci/Linker.lhs index ab4cafe..bb968ff 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. -- 1.7.10.4