diff options
Diffstat (limited to 'CabalHelper/Compiletime')
-rw-r--r-- | CabalHelper/Compiletime/Compile.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/CabalHelper/Compiletime/Compile.hs b/CabalHelper/Compiletime/Compile.hs index c27ab63..8cc565e 100644 --- a/CabalHelper/Compiletime/Compile.hs +++ b/CabalHelper/Compiletime/Compile.hs @@ -66,11 +66,7 @@ compileHelper :: Options -> Version -> FilePath -> FilePath -> IO (Either ExitCo compileHelper opts cabalVer projdir distdir = do case cabalPkgDb opts of Nothing -> - run [ - -- TODO: here ghc's caching fails and it always recompiles, probably - -- because we write the sources to a tempdir and they always look - -- newer than the Cabal sources, not sure if we can fix this - compileCabalSource + run [ compileCabalSource , Right <$> MaybeT (cachedExe cabalVer) , compileSandbox , compileGlobal |