From ee0f96f00df54901f062cb262bf2c88084800b3c Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Fri, 17 Oct 2014 02:20:40 +0000 Subject: [PATCH 1/1] Fix bashism in build.sh. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220027 91177308-0d34-0410-b5e6-96231b3b80d8 --- bindings/go/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/go/build.sh b/bindings/go/build.sh index df4855ba761..4a6b442eedb 100755 --- a/bindings/go/build.sh +++ b/bindings/go/build.sh @@ -26,7 +26,7 @@ support \ target \ " -if [ "$1" == "--print-components" ] ; then +if [ "$1" = "--print-components" ] ; then echo $llvm_components exit 0 fi -- 2.34.1