From 58cef1c5c7c9f1bf833aa1397f8d5a5a9bf136e0 Mon Sep 17 00:00:00 2001 From: Serg Metelin Date: Wed, 13 Sep 2017 15:13:26 +0800 Subject: [PATCH] Bugfixing for build.sh --- scripts/install_dependencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install_dependencies.sh b/scripts/install_dependencies.sh index 20d7c28e9..7e00e1fb8 100644 --- a/scripts/install_dependencies.sh +++ b/scripts/install_dependencies.sh @@ -63,7 +63,7 @@ if [ $ARCH == "ubuntu" ]; then fi if [ $ARCH == "darwin" ]; then - DEPS="git automake libtool boost openssl llvm@4 gmp" + DEPS="git automake libtool boost openssl llvm@4 gmp wget" brew update brew install --force $DEPS brew unlink $DEPS && brew link --force $DEPS @@ -82,7 +82,7 @@ if [ $ARCH == "darwin" ]; then # Install binaryen v1.37.14: cd ${TEMP_DIR} - git clone https://github.com/WebAssembly/binaryen/archive/1.37.21.tar.gz + wget https://github.com/WebAssembly/binaryen/archive/1.37.21.tar.gz tar zxf 1.37.21.tar.gz cd binaryen-1.37.21 git checkout tags/1.37.14 -- GitLab