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:
parent
6edb485ef1
commit
8b36d54319
5 changed files with 15 additions and 21 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue