summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Thompson <what_is_it_to_do_anything@yahoo.com>2014-05-17 13:48:31 -0400
committerMichael Thompson <what_is_it_to_do_anything@yahoo.com>2014-05-17 13:48:31 -0400
commit4c6aaec56520fea67a73aaad4f0f71746bffe2f5 (patch)
treec26c1f0f31329f82e0edd3db3966a0bf9e9598a3
parent0915967d840ad453027fb30a00b69401d3d8b50e (diff)
no need to hide 'catch'
This doesn't normally cause a problem because of some ghc workaround special to this case, but I was able to trigger an error with a complicated mixture of sandboxing, directing `cabal` to a locally installed ghc, and something else. `catch` isn't actually used in the file, so it seems it might as well go.
-rw-r--r--Setup.hs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Setup.hs b/Setup.hs
index f5d18eee4..c1c3f6472 100644
--- a/Setup.hs
+++ b/Setup.hs
@@ -29,7 +29,6 @@ import Distribution.Verbosity ( Verbosity, silent )
import Distribution.Simple.InstallDirs (mandir, CopyDest (NoCopyDest), toPathTemplate)
import Distribution.Simple.Utils (installOrdinaryFiles, info)
import Distribution.Simple.Test (test)
-import Prelude hiding (catch)
import System.Process ( rawSystem )
import System.FilePath ( (</>) )
import System.Directory ( findExecutable )