diff options
-rwxr-xr-x | clang/utils/analyzer/SATestBuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/utils/analyzer/SATestBuild.py b/clang/utils/analyzer/SATestBuild.py index 94123582225..9bb66e4956a 100755 --- a/clang/utils/analyzer/SATestBuild.py +++ b/clang/utils/analyzer/SATestBuild.py @@ -213,8 +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 "): - Command += "-j" + Jobs + if Command.startswith("make ") or Command == "make": + Command += " -j" + Jobs SBCommand = SBPrefix + Command if Verbose == 1: print " Executing: %s" % (SBCommand,) |