summaryrefslogtreecommitdiff
path: root/compiler/main/SysTools/Process.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/main/SysTools/Process.hs')
-rw-r--r--compiler/main/SysTools/Process.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/main/SysTools/Process.hs b/compiler/main/SysTools/Process.hs
index a95d9c958a..eda4b29bc0 100644
--- a/compiler/main/SysTools/Process.hs
+++ b/compiler/main/SysTools/Process.hs
@@ -36,14 +36,10 @@ import FileCleanup
-- @process >= 1.6.8.0@).
enableProcessJobs :: CreateProcess -> CreateProcess
#if defined(MIN_VERSION_process)
-#if MIN_VERSION_process(1,6,8)
enableProcessJobs opts = opts { use_process_jobs = True }
#else
enableProcessJobs opts = opts
#endif
-#else
-enableProcessJobs opts = opts
-#endif
-- Similar to System.Process.readCreateProcessWithExitCode, but stderr is
-- inherited from the parent process, and output to stderr is not captured.