summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/nothreads.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/wafsamba/nothreads.py')
-rw-r--r--buildtools/wafsamba/nothreads.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/buildtools/wafsamba/nothreads.py b/buildtools/wafsamba/nothreads.py
index d227ce1a97..9054a57af5 100644
--- a/buildtools/wafsamba/nothreads.py
+++ b/buildtools/wafsamba/nothreads.py
@@ -213,8 +213,7 @@ class Parallel(object):
assert (self.count == 0 or self.stop)
-# enable nothreads if -j1 is used from the makefile
-if os.environ.get('JOBS') == '1':
- import Runner
- Runner.process = process
- Runner.Parallel = Parallel
+# enable nothreads
+import Runner
+Runner.process = process
+Runner.Parallel = Parallel