From 5494412edcdb571d3bf235443352d99a3847f8eb Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Thu, 31 Oct 2019 10:50:56 -0700 Subject: [PATCH] Stop xcode build scripts' attempt to check out other sources. The trees are already all checked out; it doesn't need to worry about this. --- lldb/scripts/Xcode/build-llvm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/scripts/Xcode/build-llvm.py b/lldb/scripts/Xcode/build-llvm.py index b2d2f83c9b36e..d3d55d746ae5a 100755 --- a/lldb/scripts/Xcode/build-llvm.py +++ b/lldb/scripts/Xcode/build-llvm.py @@ -58,6 +58,7 @@ def dirs_exist(names): return True def XCODE_REPOSITORIES(): + return [] names = ["llvm", "clang", "swift", "cmark", "ninja"] if dirs_exist(names): return [fallback_repo(n) for n in names]