diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-07-06 15:09:56 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-07-06 15:09:56 -0400 |
commit | 4e5d8d7458e2fbb5bafe6c8b552d9a91a6a07751 (patch) | |
tree | 8d14345bc6cacc4a8e8caff4abc578eb73252468 /CmdLine | |
parent | 569b5ff748f1bc1a9c46482a34fa4b1e1e481df5 (diff) |
Remove the EKG build flag, since Gentoo for some reason decided to enable this flag, depsite it not being intended for production use and so enabled by default.
Diffstat (limited to 'CmdLine')
-rw-r--r-- | CmdLine/GitAnnex.hs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/CmdLine/GitAnnex.hs b/CmdLine/GitAnnex.hs index c3049cf9e..e989f3f43 100644 --- a/CmdLine/GitAnnex.hs +++ b/CmdLine/GitAnnex.hs @@ -119,9 +119,6 @@ import qualified Command.TestRemote #ifdef WITH_BENCHMARK import qualified Command.Benchmark #endif -#ifdef WITH_EKG -import System.Remote.Monitoring -#endif cmds :: Parser TestOptions -> Maybe TestRunner -> [Command] cmds testoptparser testrunner = @@ -232,11 +229,7 @@ cmds testoptparser testrunner = ] run :: Parser TestOptions -> Maybe TestRunner -> [String] -> IO () -run testoptparser testrunner args = do -#ifdef WITH_EKG - _ <- forkServer "localhost" 4242 -#endif - go envmodes +run testoptparser testrunner args = go envmodes where go [] = dispatch True args (cmds testoptparser testrunner) |