diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-18 10:47:47 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-18 10:47:47 -0700 |
commit | 8f019e3ef089e328861c06e4faa34003164d8a7f (patch) | |
tree | a8961f8174351b37ea0309af184f6eb1ee24eb28 | |
parent | cf8941cf0776ee82b27810bca580570d208ecce3 (diff) |
indentation fix
-rw-r--r-- | tools/shared.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/shared.py b/tools/shared.py index 60908ea1..ed019999 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -127,10 +127,10 @@ LLVM_ADD_VERSION = os.getenv('LLVM_ADD_VERSION') # Some distributions ship with multiple llvm versions so they add # the version to the binaries, cope with that def build_llvm_tool_path(tool): - if LLVM_ADD_VERSION: - return os.path.join(LLVM_ROOT, tool + "-" + LLVM_ADD_VERSION) - else: - return os.path.join(LLVM_ROOT, tool) + if LLVM_ADD_VERSION: + return os.path.join(LLVM_ROOT, tool + "-" + LLVM_ADD_VERSION) + else: + return os.path.join(LLVM_ROOT, tool) CLANG_CC=os.path.expanduser(os.path.join(LLVM_ROOT, 'clang')) CLANG_CPP=os.path.expanduser(os.path.join(LLVM_ROOT, 'clang++')) |