From 1b7c29f48304d37be4637c57d64d8748bf69685c Mon Sep 17 00:00:00 2001 From: Bill Hamilton Date: Mon, 19 Feb 2018 15:35:30 -0800 Subject: [PATCH] changed homebrew install name for openssl to openssl@1.0 to ensure openssl version 1.0 is installed --- scripts/eosio_build_darwin.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/eosio_build_darwin.sh b/scripts/eosio_build_darwin.sh index 50a28a9815c..5242462687b 100644 --- a/scripts/eosio_build_darwin.sh +++ b/scripts/eosio_build_darwin.sh @@ -70,7 +70,7 @@ $XCODESELECT --install 2>/dev/null; $RUBY -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" if [ $? -ne 0 ]; then - echo "User aborted homebrew installation. Exiting now." + echo "Unable to install homebrew at this time. Exiting now." exit 0; fi break;; @@ -110,6 +110,10 @@ pkg="llvm@4" fi + if [ $pkg = "openssl" ]; then + pkg="openssl@1.0" + fi + if [ $pkg = "gettext" ]; then PERMISSION_GETTEXT=1 fi