Fix lldb executable discovery on OS X

It was broken by r237632

Differential Revision: http://reviews.llvm.org/D9846

llvm-svn: 237928
This commit is contained in:
Vince Harron 2015-05-21 18:21:07 +00:00
parent 73eddaa2d8
commit 47fc26f9fe
1 changed files with 1 additions and 1 deletions

View File

@ -850,7 +850,7 @@ def getOutputPaths(lldbRootDirectory):
result = []
if sys.platform == 'darwin':
result.append(getXcodeOutputPaths(lldbRootDirectory))
result.extend(getXcodeOutputPaths(lldbRootDirectory))
# cmake builds? look for build or build/host folder next to llvm directory
# lldb is located in llvm/tools/lldb so we need to go up three levels