diff options
Diffstat (limited to 'utils/analyzer/SATestBuild.py')
-rwxr-xr-x | utils/analyzer/SATestBuild.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index 4d68fd8731..36199cb281 100755 --- a/utils/analyzer/SATestBuild.py +++ b/utils/analyzer/SATestBuild.py @@ -213,7 +213,8 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile): # If using 'make', auto imply a -jX argument # to speed up analysis. xcodebuild will # automatically use the maximum number of cores. - if Command.startswith("make ") or Command == "make": + if (Command.startswith("make ") or Command == "make") and \ + "-j" not in Command: Command += " -j%d" % Jobs SBCommand = SBPrefix + Command if Verbose == 1: |