summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-08-21 20:12:27 +0000
committerBill Wendling <isanbard@gmail.com>2013-08-21 20:12:27 +0000
commit0d77f8cb7b8feeb10ea00f2ec64ed300fde260fe (patch)
tree5f6580ca37c0421a0e72e85ea9a3a59e64aa253b /make
parent21afede01089ae194f0f9658f444aff0496220dd (diff)
Add missing ']'.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@188927 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'make')
-rw-r--r--make/platform/clang_darwin.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/platform/clang_darwin.mk b/make/platform/clang_darwin.mk
index f279694a5..a49d51c69 100644
--- a/make/platform/clang_darwin.mk
+++ b/make/platform/clang_darwin.mk
@@ -28,7 +28,7 @@ CheckArches = \
XCRun = \
$(shell \
result=`xcrun -find $(1) 2> /dev/null`; \
- if [ "$$?" != "0"; then result=$(1); fi; \
+ if [ "$$?" != "0" ]; then result=$(1); fi; \
echo $$result)
###