From d7e701e4ebc0706ce533d1158950324d7263d8e7 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Wed, 21 Nov 2018 22:01:20 +0100 Subject: [PATCH] Keep running configuration tests with parallel jobs Passing "-j1" to "waf configure" already sets the maximum amount of jobs to 1, so the change in a2105efc6f6c2bdd3f0ed2d3cd783de2247dd0cf is deemed unnecessary. --- waflib/Configure.py | 1 - 1 file changed, 1 deletion(-) diff --git a/waflib/Configure.py b/waflib/Configure.py index b5773715..db09c0e3 100644 --- a/waflib/Configure.py +++ b/waflib/Configure.py @@ -568,7 +568,6 @@ def run_build(self, *k, **kw): cls_name = kw.get('run_build_cls') or getattr(self, 'run_build_cls', 'build') self.test_bld = bld = Context.create_context(cls_name, top_dir=dir, out_dir=bdir) - bld.jobs = 1 bld.init_dirs() bld.progress_bar = 0 bld.targets = '*'