Rename ghcOpts -> ghcUserOptions

This commit is contained in:
Daniel Gröber
2014-08-13 18:40:01 +02:00
parent f2ccea7f29
commit c1c7dcec20
6 changed files with 9 additions and 8 deletions

View File

@@ -30,10 +30,10 @@ debugInfo = cradle >>= \c -> convert' =<< do
]
where
simpleCompilerOption = options >>= \op ->
return $ CompilerOptions (ghcOpts op) [] []
return $ CompilerOptions (ghcUserOptions op) [] []
fromCabalFile c = options >>= \opts -> do
pkgDesc <- parseCabalFile $ fromJust $ cradleCabalFile c
liftIO $ getCompilerOptions (ghcOpts opts) c pkgDesc
liftIO $ getCompilerOptions (ghcUserOptions opts) c pkgDesc
----------------------------------------------------------------