From 751bfbcb7e0934321707d76f77ae975f70bb5219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gr=C3=B6ber?= Date: Sun, 17 Jul 2016 22:32:30 +0200 Subject: [PATCH] Remove dead code --- Language/Haskell/GhcMod/Utils.hs | 60 -------------------------------- 1 file changed, 60 deletions(-) diff --git a/Language/Haskell/GhcMod/Utils.hs b/Language/Haskell/GhcMod/Utils.hs index 401ab9d..15782b0 100644 --- a/Language/Haskell/GhcMod/Utils.hs +++ b/Language/Haskell/GhcMod/Utils.hs @@ -87,66 +87,6 @@ ghcModExecutable = do ghcModExecutable = fmap ( "dist/build/ghc-mod/ghc-mod") getCurrentDirectory #endif -findLibexecExe :: String -> IO FilePath -findLibexecExe "cabal-helper-wrapper" = do - libexecdir <- getLibexecDir - let exeName = "cabal-helper-wrapper" - exe = libexecdir exeName - - exists <- doesFileExist exe - - if exists - then return exe - else do - mdir <- tryFindGhcModTreeDataDir - case mdir of - Nothing -> - error $ libexecNotExitsError exeName libexecdir - Just dir -> - return $ dir "dist" "build" exeName exeName -findLibexecExe exe = error $ "findLibexecExe: Unknown executable: " ++ exe - -libexecNotExitsError :: String -> FilePath -> String -libexecNotExitsError exe dir = printf - ( "Could not find $libexecdir/%s\n" - ++"\n" - ++"If you are a developer set the environment variable `ghc_mod_libexecdir'\n" - ++"to override $libexecdir[1] the following will work in the ghc-mod tree:\n" - ++"\n" - ++" $ export ghc_mod_libexecdir=$PWD/dist/build/%s\n" - ++"\n" - ++"[1]: %s\n" - ++"\n" - ++"If you don't know what I'm talking about something went wrong with your\n" - ++"installation. Please report this problem here:\n" - ++"\n" - ++" https://github.com/kazu-yamamoto/ghc-mod/issues") exe exe dir - -tryFindGhcModTreeLibexecDir :: IO (Maybe FilePath) -tryFindGhcModTreeLibexecDir = do - exe <- getExecutablePath' - dir <- case takeFileName exe of - "ghc" -> getCurrentDirectory -- we're probably in ghci; try CWD - _ -> return $ (!!4) $ iterate takeDirectory exe - exists <- doesFileExist $ dir "ghc-mod.cabal" - return $ if exists - then Just dir - else Nothing - -tryFindGhcModTreeDataDir :: IO (Maybe FilePath) -tryFindGhcModTreeDataDir = do - dir <- (!!4) . iterate takeDirectory <$> getExecutablePath' - exists <- doesFileExist $ dir "ghc-mod.cabal" - return $ if exists - then Just dir - else Nothing - -readLibExecProcess' :: (MonadIO m, ExceptionMonad m) - => String -> [String] -> m String -readLibExecProcess' cmd args = do - exe <- liftIO $ findLibexecExe cmd - liftIO $ readProcess exe args "" - getExecutablePath' :: IO FilePath #if __GLASGOW_HASKELL__ >= 706 getExecutablePath' = getExecutablePath