[compiler-rt] r188927 - Add missing ']'.
Bob Wilson
bob.wilson at apple.com
Wed Aug 21 15:21:04 PDT 2013
Thanks, Bill. I can't believe it worked without that (and I did test it).
On Aug 21, 2013, at 1:12 PM, Bill Wendling <isanbard at gmail.com> wrote:
> Author: void
> Date: Wed Aug 21 15:12:27 2013
> New Revision: 188927
>
> URL: http://llvm.org/viewvc/llvm-project?rev=188927&view=rev
> Log:
> Add missing ']'.
>
> Modified:
> compiler-rt/trunk/make/platform/clang_darwin.mk
>
> Modified: compiler-rt/trunk/make/platform/clang_darwin.mk
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/make/platform/clang_darwin.mk?rev=188927&r1=188926&r2=188927&view=diff
> ==============================================================================
> --- compiler-rt/trunk/make/platform/clang_darwin.mk (original)
> +++ compiler-rt/trunk/make/platform/clang_darwin.mk Wed Aug 21 15:12:27 2013
> @@ -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)
>
> ###
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list