summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlldb/scripts/Xcode/build-llvm.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/scripts/Xcode/build-llvm.py b/lldb/scripts/Xcode/build-llvm.py
index 4d868de6b10..0a9264f3c4a 100755
--- a/lldb/scripts/Xcode/build-llvm.py
+++ b/lldb/scripts/Xcode/build-llvm.py
@@ -239,7 +239,8 @@ def check_out_if_needed(spec):
def all_check_out_if_needed():
- map(check_out_if_needed, XCODE_REPOSITORIES())
+ for r in XCODE_REPOSITORIES():
+ check_out_if_needed(r)
def should_build_llvm():
@@ -263,7 +264,8 @@ def setup_source_symlink(repo):
def setup_source_symlinks():
- map(setup_source_symlink, XCODE_REPOSITORIES())
+ for r in XCODE_REPOSITORIES():
+ setup_source_symlink(r)
def setup_build_symlink():
OpenPOWER on IntegriCloud