[analyzer] SATestBuild.py: correctly add -j option for projects using make.

llvm-svn: 168099
This commit is contained in:
Jordan Rose 2012-11-15 22:03:53 +00:00
parent d947a66c13
commit f477505d03
1 changed files with 2 additions and 2 deletions

View File

@ -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,)