summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/pure/osproc.nim4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim
index 5c34c5a11..0ac01091c 100644
--- a/lib/pure/osproc.nim
+++ b/lib/pure/osproc.nim
@@ -22,8 +22,6 @@ else:
 
 when defined(linux):
   import linux
-  when not defined(useFork):
-    const useClone = true
 
 type
   TProcess = object of TObject
@@ -663,7 +661,7 @@ elif not defined(useNimRtl):
     data.workingDir = workingDir
 
 
-    when defined(posix_spawn) and not defined(useFork) and not defined(useClone):
+    when defined(posix_spawn) and not defined(useFork) and not defined(useClone) and not defined(linux):
       pid = startProcessAuxSpawn(data)
     else:
       pid = startProcessAuxFork(data)