summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-05-14 10:21:34 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-05-24 01:55:24 -0400
commita0ea59d641d400543e9e803007500da01eedf48a (patch)
treed5b817282db575326a3745fd089f3d86a752ff1d /ghc
parente0eda0707d6cc3d5a85cfb13543df61623e82070 (diff)
downloadhaskell-a0ea59d641d400543e9e803007500da01eedf48a.tar.gz
Move Config module into GHC.Settings
Diffstat (limited to 'ghc')
-rw-r--r--ghc/GHCi/UI.hs2
-rw-r--r--ghc/Main.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/ghc/GHCi/UI.hs b/ghc/GHCi/UI.hs
index 36e27dd5b4..51084c8e8a 100644
--- a/ghc/GHCi/UI.hs
+++ b/ghc/GHCi/UI.hs
@@ -73,7 +73,7 @@ import GHC.Runtime.Loader ( initializePlugins )
-- Other random utilities
import GHC.Types.Basic hiding ( isTopLevel )
-import Config
+import GHC.Settings.Config
import GHC.Data.Graph.Directed
import GHC.Utils.Encoding
import GHC.Data.FastString
diff --git a/ghc/Main.hs b/ghc/Main.hs
index 5e194369ca..fa1169f64f 100644
--- a/ghc/Main.hs
+++ b/ghc/Main.hs
@@ -46,7 +46,7 @@ import GHC.Unit.Module ( ModuleName, mkModuleName )
import GHC.HandleEncoding
import GHC.Platform
import GHC.Platform.Host
-import Config
+import GHC.Settings.Config
import GHC.Settings.Constants
import GHC.Driver.Types
import GHC.Unit.State ( pprPackages, pprPackagesSimple )