diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-08-21 20:12:27 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-08-21 20:12:27 +0000 |
commit | 4f20f5109013ebcde1c3f36c8086d709582f0773 (patch) | |
tree | 8961abc0a4b906f3eee93d6bee27714ea6836eb4 | |
parent | 745101d6666804bcc39fe84136c04754c7491f37 (diff) | |
download | bcm5719-llvm-4f20f5109013ebcde1c3f36c8086d709582f0773.tar.gz bcm5719-llvm-4f20f5109013ebcde1c3f36c8086d709582f0773.zip |
Add missing ']'.
llvm-svn: 188927
-rw-r--r-- | compiler-rt/make/platform/clang_darwin.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/make/platform/clang_darwin.mk b/compiler-rt/make/platform/clang_darwin.mk index f279694a59a..a49d51c69d8 100644 --- a/compiler-rt/make/platform/clang_darwin.mk +++ b/compiler-rt/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) ### |