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.

This commit is contained in:
Joey Hess 2016-07-06 15:09:56 -04:00
parent 6edb485ef1
commit 8b36d54319
Failed to extract signature
5 changed files with 15 additions and 21 deletions

View file

@ -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)