diff options
Diffstat (limited to 'scripts/Xcode/build-llvm.py')
-rwxr-xr-x | scripts/Xcode/build-llvm.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Xcode/build-llvm.py b/scripts/Xcode/build-llvm.py index 36e491ebf065e..e2a46de1a16ce 100755 --- a/scripts/Xcode/build-llvm.py +++ b/scripts/Xcode/build-llvm.py @@ -43,6 +43,9 @@ def process_repo(r): } def XCODE_REPOSITORIES(): + override = repo.get_override() + if override: + return [process_repo(r) for r in override] identifier = repo.identifier() if identifier == None: identifier = "<invalid>" # repo.find will just use the fallback file |