From 470c161e5079b369476d97cfe2c089f593886abd Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Wed, 13 Mar 2019 17:14:58 +0100 Subject: [PATCH] Fixes boost repository URL in CentOS install script. --- Changelog.md | 1 + scripts/install_deps.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 98f136c0f..043a48013 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,7 @@ Bugfixes: Build System: + * Install scripts: Fix boost repository URL for CentOS 6. ### 0.5.6 (2019-03-13) diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index 0ed13fdd6..a0e1ff352 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -353,6 +353,7 @@ case $(uname -s) in # needed, but some tweaking/improvements can definitely happen #------------------------------------------------------------------------------ CentOS*) + echo "Attention: CentOS 7 is currently not supported!"; read -p "This script will heavily modify your system in order to allow for compilation of Solidity. Are you sure? [Y/N]" -n 1 -r if [[ $REPLY =~ ^[Yy]$ ]]; then # Make Sure we have the EPEL repos @@ -376,7 +377,7 @@ case $(uname -s) in # Get latest boost thanks to this guy: http://vicendominguez.blogspot.de/2014/04/boost-c-library-rpm-packages-for-centos.html sudo yum -y remove boost-devel - sudo wget http://repo.enetres.net/enetres.repo -O /etc/yum.repos.d/enetres.repo + sudo wget https://bintray.com/vicendominguez/CentOS6/rpm -O /etc/yum.repos.d/bintray-vicendominguez-CentOS6.repo sudo yum install boost-devel else echo "Aborted CentOS Solidity Dependency Installation";